EndType

Del.» type TEndType = (etClosed, etButt, etSquare, etRound);

C++ » enum EndType { etClosed, etButt, etSquare, etRound };

C#  » public enum EndType { etClosed, etButt, etSquare, etRound };


The OffsetPaths function has an EndType parameter that accepts one of four end types:



Note: The order of the vertices in the last example has been changed because the OffsetPaths function does not accept self-intersecting closed paths. Self-intersecting closed paths must be 'simplified' before offsetting. The first 3 examples above show offsetting of open paths. There are no limitations to offsetting on open paths.

See Also

OffsetPaths, JoinType