|
Point2Addition Operator (Point2, Point2)
|
Interprets two points as a vector each, and adds them.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Point2 operator +(
Point2 v,
Point2 w
)
Public Shared Operator + (
v As Point2,
w As Point2
) As Point2
public:
static Point2 operator +(
Point2 v,
Point2 w
)
static let inline (+)
v : Point2 *
w : Point2 : Point2
Parameters
- v
- Type: Karamba.GeometryPoint2
First point. - w
- Type: Karamba.GeometryPoint2
Second point.
Return Value
Type:
Point2Component-wise sum of the points.
See Also