Recent content by xondokan

  1. X

    Find point on XYZ line with Distance

    public GeoPoint GetPointAt3D(double distance3D) { double distanceLengthRatio = distance3D / this.Length3D; double x = this.FromPoint.X + ((this.ToPoint.X - this.FromPoint.X) * distanceLengthRatio); double y = this.FromPoint.Y + ((this.ToPoint.Y -...
Back
Top