Click or drag to resize

HatchBoundaryPath Class

imbVeles Framework: imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Represent a loop of a hatch boundaries.
Inheritance Hierarchy
SystemObject
  netDxf.EntitiesHatchBoundaryPath

Namespace:  netDxf.Entities
Assembly:  netDXF.Standard (in netDXF.Standard.dll) Version: 2.1.1
Syntax
C#
public class HatchBoundaryPath : ICloneable
Request Example View Source

The HatchBoundaryPath type exposes the following members.

Constructors
  NameDescription
Public methodHatchBoundaryPath
Initializes a new instance of the Hatch class.
Top
Properties
  NameDescription
Public propertyEdges
Gets the list of entities that makes a loop for the hatch boundary paths.
Public propertyEntities
Gets the list of entities that makes the boundary.
Public propertyPathType
Gets the boundary path type flag.
Top
Methods
  NameDescription
Public methodClone
Creates a new HatchBoundaryPath that is a copy of the current instance.
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.)
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.)
Public methodUpdate
Updates the internal HatchBoundaryPath data.
Top
Remarks
The entities that make a loop can be any combination of lines, polylines, circles, arcs, ellipses, and splines.
The entities that define a loop must define a closed path and they have to be on the same plane as the hatch, if these conditions are not met the result will be unpredictable.
The entity normal and the elevation will be ignored. Only the x and y coordinates of the line, ellipse, the circle, and spline will be used. Circles, full ellipses, closed polylines, closed splines are closed paths so only one should exist in the edges list. Lines, arcs, ellipse arcs, open polylines, and open splines are open paths so more entities should exist to make a closed loop.
See Also