Struct UnsafeTriangulator<T2>
A readonly struct that corresponds to Triangulator<T2>. This struct can be used directly in a native context within the jobs pipeline. The API is accessible through Extensions.
Inherited Members
Namespace: andywiecko.BurstTriangulator.LowLevel.Unsafe
Assembly: .dll
Syntax
public readonly struct UnsafeTriangulator<T2> where T2 : unmanaged
Type Parameters
Name | Description |
---|---|
T2 | The coordinate type. Supported types include: float2, Vector2, double2, Unity.Mathematics.FixedPoint.fp2, and int2. For more information on type restrictions, refer to the documentation. |
Remarks
Unsafe in this context indicates that using the method may be challenging for beginner users. The user is responsible for managing data allocation (both input and output). Some permutations of the method calls may not be supported. Refer to the documentation for more details. The term unsafe does not refer to memory safety.