コード例 #1
0
ファイル: CMLine.cs プロジェクト: lenivoe/stereometria
 public CMLine(CMShape owner, int id, IEnumerable <int> pointsId) : base(owner, id)
 {
     foreach (var cur in pointsId)
     {
         PushPointBack(cur);
     }
 }
コード例 #2
0
ファイル: CMPlane.cs プロジェクト: lenivoe/stereometria
 public CMPlane(CMShape owner, int id, IEnumerable <int> linesId) : base(owner, id)
 {
     foreach (var lineId in linesId)
     {
         Attach(owner.PrimitiveAt(lineId) as CMLine);
     }
 }
コード例 #3
0
ファイル: AMRelation.cs プロジェクト: lenivoe/stereometria
 public AMRelation(CMShape owner, int id) : base(owner, id)
 {
 }
コード例 #4
0
 public CMPoint(CMShape owner, int id) : base(owner, id)
 {
 }
コード例 #5
0
 public AModel(CMShape owner, int id)
 {
     Owner = owner;
     Id    = id;
 }
コード例 #6
0
 public AMPrimitive(CMShape owner, int id) : base(owner, id)
 {
 }