Class GeomUtil
Utility of Geometry.
public static class GeomUtil
- Inheritance
-
GeomUtil
- Inherited Members
Methods
GetBox3d(IExpandToBox3d)
public static Box3d GetBox3d(this IExpandToBox3d src)
Parameters
src
IExpandToBox3d
Returns
GetNearestPointOnLineSegment(Vec2d, Vec2d, Vec2d)
Get the nearest point on a line segment to a given point.
public static Vec2d GetNearestPointOnLineSegment(Vec2d point, Vec2d lineStart, Vec2d lineEnd)
Parameters
point
Vec2dThe point to find the nearest point from
lineStart
Vec2dStart point of the line segment
lineEnd
Vec2dEnd point of the line segment
Returns
- Vec2d
The nearest point on the line segment
GetNearestPointOnLineSegment(Vec3d, Vec3d, Vec3d)
Get the nearest point on a line segment to a given point.
public static Vec3d GetNearestPointOnLineSegment(Vec3d point, Vec3d lineStart, Vec3d lineEnd)
Parameters
point
Vec3dThe point to find the nearest point from
lineStart
Vec3dStart point of the line segment
lineEnd
Vec3dEnd point of the line segment
Returns
- Vec3d
The nearest point on the line segment
GetRayIntersection(Vec3d, Vec3d, Vec3d, Vec3d)
public static Vec3d GetRayIntersection(Vec3d rayABegin, Vec3d rayAVec, Vec3d rayBBegin, Vec3d rayBVec)
Parameters
Returns
IntersectLineSegmentCircle(Vec2d, Vec2d, double, out Vec2d, out Vec2d)
Intersect line segment and circle.
public static double IntersectLineSegmentCircle(Vec2d p0, Vec2d p1, double rr, out Vec2d pA, out Vec2d pB)
Parameters
p0
Vec2dline segment begin point
p1
Vec2dline segment end point
rr
doubleradius*radius
pA
Vec2dfirst intersect point along
p0
top1
pB
Vec2dsecond intersect point along
p0
top1
Returns
- double
determinant