Exemplo n.º 1
0
        //--------------------------------------------------------------------------------------------------

        public void Set(Ax1 axis)
        {
            _GeomLine = new Geom_Line(axis);
            _P1       = _P2 = null;

            _Update();
        }
Exemplo n.º 2
0
        //--------------------------------------------------------------------------------------------------

        public void Set(Pnt p1, Pnt p2)
        {
            _P1       = new Geom_CartesianPoint(p1);
            _P2       = new Geom_CartesianPoint(p2);
            _GeomLine = null;

            Update();
        }
Exemplo n.º 3
0
        //--------------------------------------------------------------------------------------------------

        public void Set(Pnt p1, Pnt p2)
        {
            if (p1.IsEqual(p2, Double.Epsilon))
            {
                return;
            }

            _P1       = new Geom_CartesianPoint(p1);
            _P2       = new Geom_CartesianPoint(p2);
            _GeomLine = null;

            _Update();
        }
Exemplo n.º 4
0
 public void SetComponent(Geom_Line aComponent)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 public AIS_Axis(Geom_Line aComponent)
     : base()
 {
     throw new NotImplementedException();
 }
Exemplo n.º 6
0
 public void SetLine(Geom_Line theLine)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public AIS_Line(Geom_Line aLine)
     : base()
 {
     throw new NotImplementedException();
 }