touchvg.core.Point2d.subtract C# (CSharp) Method

subtract() public method

public subtract ( Vector2d vec ) : Point2d
vec Vector2d
return Point2d
  public Point2d subtract(Vector2d vec) {
    Point2d ret = new Point2d(touchvgPINVOKE.Point2d_subtract__SWIG_1(swigCPtr, Vector2d.getCPtr(vec)), true);
    if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }

Same methods

Point2d::subtract ( Point2d pnt ) : Vector2d