virtual void AdoptGrafAttribute( TGrafAttribute* adoptedAttribute ); virtual TGrafAttribute* OrphanGrafAttribute( const TToken& attributeName ); virtual const TGrafAttribute* GetGrafAttribute( const TToken& attributeName ) const;
TToken: TToken is constructed from a TText instance. The attribute bundle can hold only one attribute by a particular name. The name provided by the text string in the token is used, not the name of the TGrafAttribute instance. If a new attribute is adopted by a bundle that has the same name as an attribute already in the bundle, the new attribute replaces the old attribute.
TSurfaceIsolines: This class is a 3D attribute that can be adopted by TGrafBundle3D. This attribute tells the renderer the number of isolines to draw on a 3-D surface (a TGSurface3D). Isolines (also known as isoparametric lines) are quasi-parallel curves that run along a curved surface in one parametrid direction. A surface has two parametric directions that are roughly perpendicular, so the siolines along one direction cross the isolines along the other to divide the surface into four-sided pieces. TSurfaceIsolines is used only on frames.
When the value is zero, only the edges of the surface are drawn. By default, the number of isolines is the number of isolines per span. A span is the region between two control points along one parametric direction of the surface.
TTesselationControl: This class is a 3D attribute that can be adopted by TGrafBundle3D. This attribute tells the tessellator how finely to tessellate (divide into shards) a 3-D surface (TGSurface3D). TTesselationControl is used only on surfaces. This attribute specifies the resolution of tesselation or how large the shards should be. A larger number for the resolution gives a coarser resolution or larger shards.
NOTE See the online Class and Member Function descriptions for more information on TSurfaceIsolines and TTesselationControl.