Represents a profile as cached canonically for extrusion/sweeps

interface CanonicalProfile {
    curve?: CurveObject;
    holes?: StdVector<CurveObject>;
    localID: number;
    nativeProfile?: ProfileObject;
    profiles?: CanonicalProfile[];
}

Properties

curve?: CurveObject
holes?: StdVector<CurveObject>
localID: number
nativeProfile?: ProfileObject
profiles?: CanonicalProfile[]