Show / Hide Table of Contents

Struct PolyBoundary

Represents an outer or inner boundary of a polygon.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Fusee.Jometri
Assembly: Fusee.Jometri.dll
Syntax
public struct PolyBoundary

Fields

IsOuter

Determines whether a boundary is a outer boundary or a inner boundary (which forms a hole in the face).

Declaration
public bool IsOuter
Field Value
Type Description
System.Boolean

Points

The geometric information of the vertices which belong to a boundary.

Declaration
public IList<float3> Points
Field Value
Type Description
System.Collections.Generic.IList<float3>
Generated by DocFX
GitHub Repo
Back to top