Vector2fAddition Operator (Point2f, Vector2f) |
Sums up a point and a vector, and returns a new point.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Syntax public static Point2f operator +(
Point2f point,
Vector2f vector
)
Public Shared Operator + (
point As Point2f,
vector As Vector2f
) As Point2f
Parameters
- point
- Type: Rhino.GeometryPoint2f
A point. - vector
- Type: Rhino.GeometryVector2f
A vector.
Return Value
Type:
Point2fA new point that results from the addition of point and vector.
See Also