Example #1
0
 void DrawGroup(Base3D.Group p, Pen pen)
 {
     foreach (Entity e in p.entities)
     {
         DrawEntity(e, pen);
     }
 }
Example #2
0
 void DrawGroup(Base3D.Group p)
 {
     foreach (Entity e in p.entities)
     {
         DrawEntity(e);
     }
 }