ShapeDrawer
Definition
public interface IShapeDrawer
{
Type Type { get; }
void Draw();
void Reset();
}public abstract class ShapeDrawer<TShape> : IShapeDrawer
where TShape : structRemarks
Quick Lookup
Goal
How
Properties
Type
Fields
drawQueue
lineGeometry
thicknessSpace
Methods
Draw
Reset
Extension Points
Required Overrides
Method
Purpose
Optional Overrides
Method
Purpose
Implementation Requirements
Type Parameters
Parameter
Constraint
Description
Common Pitfalls
Examples
Custom Shape Drawer
See Also
Last updated