| Point3dAdd Method (Point3d, Vector3d) | 
 
            Sums up a point and a vector, and returns a new point.
            
(Provided for languages that do not support operator overloading. You can use the + operator otherwise)
 
    Namespace: 
   Rhino.Geometry
    Assembly:
   RhinoCommon (in RhinoCommon.dll)
Since: 5.0
 Syntax
Syntaxpublic static Point3d Add(
	Point3d point,
	Vector3d vector
)
Public Shared Function Add ( 
	point As Point3d,
	vector As Vector3d
) As Point3d
Parameters
- point
- Type: Rhino.GeometryPoint3d
 A point.
- vector
- Type: Rhino.GeometryVector3d
 A vector.
Return Value
Type: 
Point3dA new point that results from the addition of point and vector.
 See Also
See Also