Ejemplo n.º 1
0
        public Axis()
        {
            Line = new LineTwoPoints();
            Line.SetZIndex(ZOrder.Axes);

            //Arrow = new Arrow();
            //Arrow.Dependencies.Add(Line);
            //Children.Add(Line, Arrow);
            Children.Add(Line);
        }
Ejemplo n.º 2
0
 public void ConvertToSegment()
 {
     LineTwoPoints.Convert(this, Factory.CreateSegment(this.Drawing, this.Dependencies));
 }
Ejemplo n.º 3
0
 public void Reverse()
 {
     LineTwoPoints.Convert(this, Factory.CreateRay(this.Drawing, this.Dependencies.Reverse().ToList()));
 }