Beispiel #1
0
 public void Draw(DrawContext.Wireframe context, IWireframeGraphicsFactory graphicsFactory)
 {
     graphicsFactory.BeginEntity(this, context);
     if (this.IsEntityVisibleInContext((DrawContext)context, this.UseLayerEnabled))
     {
         this.DrawInternal(context, graphicsFactory);
     }
     graphicsFactory.EndEntity();
 }
Beispiel #2
0
 public void Draw(IWireframeGraphicsFactory graphicsFactory)
 {
     graphicsFactory.BeginEntity(this.dxfEntity_0, this.wireframe_0);
     for (LinkedListNode <IWireframeDrawable> linkedListNode = this.linkedList_0.First; linkedListNode != null; linkedListNode = linkedListNode.Next)
     {
         linkedListNode.Value.Draw(graphicsFactory);
     }
     graphicsFactory.EndEntity();
 }