Navigation
API > API/Plugins > API/Plugins/GeometryAlgorithms > API/Plugins/GeometryAlgorithms/FArrangement2d
| Type | Name | Description | |
|---|---|---|---|
| int | Insert
(
const FVector2d& Pt |
Insert isolated point P into the arrangement | |
| void | Insert
(
const FSegment2d& Segment, |
Insert segment into the arrangement | |
| *void | Insert
(
PolyLine2d pline, |
Int N = pline.VertexCount - 1; for (int i = 0; i < N; ++i) { FVector2d A = pline[i]; FVector2d B = pline[i + 1]; insert_segment(A, B, GID); } | |
| void | Insert
(
const FVector2d& A, |
Insert segment [A,B] into the arrangement |