Click or drag to resize

ConvexBoundaryEllipsoidSurfaceRegionBuilder Class

An EllipsoidSurfaceRegionBuilder builder that takes unorganized input points and forms a convex hull that wraps them into a region. This hull is created by projecting the input points onto a plane centered at the centroid of the input points and connecting boundary nodes via geodesics.
Inheritance Hierarchy
SystemObject
  AGI.Foundation.GeometryEllipsoidSurfaceRegionBuilder
    AGI.Foundation.GeometryConvexBoundaryEllipsoidSurfaceRegionBuilder

Namespace:  AGI.Foundation.Geometry
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public class ConvexBoundaryEllipsoidSurfaceRegionBuilder : EllipsoidSurfaceRegionBuilder

The ConvexBoundaryEllipsoidSurfaceRegionBuilder type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyGranularity
Gets or sets the granularity of the EllipsoidSurfaceRegion's borders. By default this is π / 360.0.
(Inherited from EllipsoidSurfaceRegionBuilder.)
Public propertyHoles
Gets EllipsoidSurfaceRegionBuilders that describe the holes in the produced surface region.
(Inherited from EllipsoidSurfaceRegionBuilder.)
Public propertyReferencePoint
Gets or sets a reference point to manually specify as inside or outside the region, to allow for cases like regions larger than half the globe since the default behavior always selects the smaller portion of the ellipsoid as the region.
Public propertyReferencePointInsideRegion
Gets or sets the specification for whether the ReferencePoint is inside or outside the region.
Public propertyReferenceSurface
Gets or sets the Ellipsoid upon which the surface region will be defined.
(Inherited from EllipsoidSurfaceRegionBuilder.)
Public propertyUnorganizedNodes
Gets or sets the unorganized nodes that will form the surface boundary.
Top
Methods
  NameDescription
Protected methodBuildHole
A method that constructs an EllipsoidSurfaceRegionHole based upon the builder's configuration.
(Overrides EllipsoidSurfaceRegionBuilderBuildHole.)
Protected methodBuildRegion
A method that constructs an EllipsoidSurfaceRegion based upon the builder's configuration.
(Overrides EllipsoidSurfaceRegionBuilderBuildRegion(IListEllipsoidSurfaceRegionHole).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGetCentroid
Computes the centroid of the input points.
(Inherited from EllipsoidSurfaceRegionBuilder.)
Public methodGetEllipsoidSurfaceRegion (Inherited from EllipsoidSurfaceRegionBuilder.)
Public methodGetEllipsoidSurfaceRegionHole (Inherited from EllipsoidSurfaceRegionBuilder.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
This region's centroid will be with respect to all input points, not the final boundary. For large regions, the technique used will be subject to distortions.
See Also