Exemplo n.º 1
0
        public ILineEntity LineByStartPointEndPoint(IPointEntity startPoint, IPointEntity endPoint)
        {
            DSGeometryApplication.Check();
            LineEntity lnhost = new LineEntity();

            lnhost.UpdateEndPoints(startPoint, endPoint);
            return(lnhost);
        }
Exemplo n.º 2
0
 public ILineEntity LineByStartPointEndPoint(IPointEntity startPoint, IPointEntity endPoint)
 {
     DSGeometryApplication.Check();
     LineEntity lnhost = new LineEntity();
     lnhost.UpdateEndPoints(startPoint, endPoint);
     return lnhost;
 }