Example #1
0
        public IEntity2D MultiplyMatrixCopy(Matrix3D matrix)
        {
            var arc = new Arc2D(this);

            arc.Multiply(matrix);
            return(arc);
        }
Example #2
0
 public Arc2D(Arc2D arc2D)
 {
     Start     = new Point2D(arc2D.Start);
     End       = new Point2D(arc2D.End);
     Center    = new Point2D(arc2D.Center);
     Radius    = arc2D.Radius;
     PlotStyle = arc2D.PlotStyle;
 }