Insert

Overload list

Windows
MacOS
Linux
Name Description

Public function

int

 

Insert

(
    const FVector2d& Pt
)

Insert isolated point P into the arrangement

Public function

void

 

Insert

(
    const FSegment2d& Segment,
    int GID
)

Insert segment into the arrangement

Public function Const

*void

 

Insert

(
    PolyLine2d pline,
    int GID
)

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); }

Public function

void

 

Insert

(
    const FVector2d& A,
    const FVector2d& B,
    int GID
)

Insert segment [A,B] into the arrangement

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss