This .NET class wraps the Hatch ObjectARX class.
Hatch is a planar entity that can be created and placed in an arbitrary plane in 3D space.
The hatch plane can be uniquely defined by a normal vector in WCS (World Coordinate System) and an elevation indicating the distance from the WCS origin to the hatch plane. The hatch plane adopts a standard AutoCAD object coordinate system (OCS). Its origin coincides with the WCS origin and its X and Y axes are calculated using the arbitrary axis algorithm.
The hatch boundary defines the area to be filled with the specified hatch pattern. The internal representation of the hatch boundary consists of a set of planar loops. Each loop is made of a collection of 2D edges of line, circular arc, elliptic arc and spline. If the hatch boundary contains two or more loops, the areas enclosed by individual loops must be completely disjoint or one will completely enclose the other.
The hatch boundary defines the area to be filled with the specified hatch pattern. The internal representation of the hatch boundary consists of a set of planar loops. Each loop is made of a collection of 2D edges of line, circular arc, elliptic arc and spline. If the hatch boundary contains two or more loops, the areas enclosed by individual loops must be completely disjoint or one will completely enclose the other.
A loop must be simple, closed, and continuous, intersecting itself only at its endpoints. Furthermore, its start point and end point must coincide. When defining the hatch boundary, the application must ensure that the loops and edges are well defined and structured. If the boundary contains two or more loops, they must be organized into a nested structure in which the external loop is constructed first, then followed by all its internal loops in nested order. If there is more than one external loop, repeat the process. AutoCAD provides limited validation of the hatch boundary in order to maintain API efficiency and performance.
The internal representations of hatch boundary edges are GELIB 2D geometry, including LineSegment2d, CircularArc2d, EllipticalArc2d and NurbCurve2d. If the hatch boundary consists of a polyline, special methods are provided to construct the loop.
Associative hatching allows the application to create a hatch entity that is associative to the boundaries of existing AutoCAD database entities, including LINE, ARC, CIRCLE, ELLIPSE, SPLINE, POLYLINE, TEXT, MTEXT, ATTRIBUTE DEFINITION, ATTRIBUTE, SHAPE, SOLID, TRACE, TOLERANCE, REGION, VIEWPORT, 3D FACE, BLOCK INSERT, XREF, LWPOLYLINE, RASTER etc. When you edit the source geometry, the hatch entity will adapt to the changes automatically.
When using a custom entity, you must define an explode method in order for the hatching to work. Your explode method should break your entity down into less complicated entities. This will cause Hatch to recursively call the explode method on the entities that you return, until the entities have been broken down into native entities.
When defining a hatch boundary using existing database entities, the application must ensure that the selected objects have a valid hatch boundary and are coplanar with the hatch plane. The selected objects must also form well-defined loops. You also need to set the associativity flag before you set the hatch boundary. InsertLoopAt() and AppendLoop() methods will extract the geometry from database objects and maintain the database object IDs with the loop structure for associative hatch.
If the hatch boundary contains two or more loops for a solid fill operation, the areas enclosed by the individual loops must be completely disjoint or one will completely enclose the other. Also, each loop must be simple, closed, and continuous, in which it intersects itself only at its endpoints. If the hatch boundary does not meet these requirements, the results may be unpredictable and inconsistent between the regular hatch and the solid fill pattern.
Mlines are complex entities that can produce more than one loop, which means they will be rejected as hatch boundaries. If you use the Hatch API and select an Mline object to be hatched, no hatching will be displayed. To work around this, you can explode the mline, get the resulting edges, and produce loops from them. If Mline.Explode() produces a set of edges that do not form a single closed loop, you can create a region by using the edges to construct an Region object. You can then explode the region to get simple closed loops, and pass those loops to the Hatch object.
Currently, AutoCAD supports three hatch pattern types: User-defined, Predefined, and Custom. See the HatchPatternType enum for more information.
The following methods enable the application to set and get hatch pattern-related data. If you use Hatch.PatternScale (or any of the pattern properties), the scale value changes but the pattern does not change on the display. This is by design. You need to use Hatch.Pattern after changing the pattern scale, angle, name, etc. One call to this function is sufficient for all combinations of pattern changes.
AutoCAD currently supports three hatch styles: Normal, Outer, and Ignore. See the HatchStyle enum for more information.
After defining the hatch boundary and specifying the hatch pattern and style, the application must elaborate the hatch lines or solid fill for display. The Hatch class implementation maintains the computed hatch lines and solid fill to support WorldDraw() and ViewportDraw() methods for hatch entity display. However, the computed hatch lines and solid fill are not saved with the drawing or DXF files for file size efficiency. Instead, AutoCAD recomputes the hatch lines or solid fill when a DWG or DXF file is opened by AutoCAD.
If the hatch boundary definition loops or edges get changed or removed, the application must re-elaborate the hatch lines or solid fill to update the display.
The hatch boundary definition loops and edges are not displayed. This should not present a problem because the hatch entity is always associative with existing geometry in the AutoCAD database in most cases.
Autodesk.AutoCAD.DatabaseServices.DBObject Autodesk.AutoCAD.DatabaseServices.Entity Autodesk.AutoCAD.DatabaseServices.Hatch
Public Class Hatch Inherits Entity
public class Hatch : Entity;
AutoCAD always assumes that the x-axis for an CircularArc2d hatch boundary is an Vector2d of (1.0, 0.0).
Comments? |