예제 #1
0
 public Frame(TracePoint[] tracePoints, ITransformation transformation, string name)
 {
     TracePoints = tracePoints;
     Transformation = transformation;
     Name = name;
 }
예제 #2
0
 public NullFramable()
 {
     TracePoints = new TracePoint[0];
     Transformation = new TranslateTransformation(new Point(0,0));
     Name = "Null";
 }