Autodesk.AutoCAD.GraphicsInterface Namespace > WorldGeometry Class
WorldGeometry Class
Description

 

This .NET class wraps the AcGiWorldGeometry ObjectARX class. 

 

This class is responsible for inserting geometry into the graphics cache for later display. An object of this class is part of every WorldDraw object which is passed into an entity's WorldDraw() method when graphics generation is required for the entity. Geometry generated with the methods of this class is used in all viewports. If viewport-specific graphics are desired, then ViewportDraw() must be used instead of WorldDraw()

 

This class also exposes the current net block insert transform of the entity and allows the user to set the object's extents to some value. 

 

Model coordinates are applied to all geometry in this class; only WorldGeometry.SetExtents() requires a pointer to an array of two World Coordinate points. 

 

This class can be derived from to create your own class with your own implementations of the various geometry functions. An object of your custom class can be used with an object of a custom class derived from WorldDraw to pass into an entity's WorldDraw() method. This gives you the ability to obtain the graphics information for an entity without having direct access to the entity's underlying code. One situation where this has proven useful is when the facet geometry of AutoCAD solids is needed.

Class Hierarchy
Autodesk.AutoCAD.GraphicsInterface.WorldGeometry
Visual Basic
Public abstract Class WorldGeometry
Inherits Autodesk.AutoCAD.GraphicsInterface.Geometry
C#
public abstract class WorldGeometry : Autodesk.AutoCAD.GraphicsInterface.Geometry;
Links
See Also

WorldDraw, EdgeData, FaceData, VertexData, TextStyle, Entity, Point3d, Vector3d

   Comments?