Vector3d.Sub Method 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Sub(Vector3d) | 
							 
		Obsolete.
	 
Subtract the Vector passed as parameter from this instance.  | 
        	
| Sub(Vector3d) | 
							 
		Obsolete.
	 
Subtract the Vector passed as parameter from this instance.  | 
        	
| Sub(Vector3d, Vector3d) | 
							 
		Obsolete.
	 
					 | 
        	
| Sub(Vector3d, Vector3d, Vector3d) | 
							 
		Obsolete.
	 
Subtract one Vector from another  | 
        	
Sub(Vector3d)
Caution
Use static Subtract() method instead.
Subtract the Vector passed as parameter from this instance.
[System.Obsolete("Use static Subtract() method instead.")]
public void Sub(OpenTK.Vector3d right);
	member this.Sub : OpenTK.Vector3d -> unit
	Parameters
- right
 - Vector3d
 
Right operand. This parameter is only read from.
- Attributes
 
Applies to
Sub(Vector3d)
Caution
Use static Subtract() method instead.
Important
This API is not CLS-compliant.
Subtract the Vector passed as parameter from this instance.
[System.CLSCompliant(false)]
[System.Obsolete("Use static Subtract() method instead.")]
public void Sub(ref OpenTK.Vector3d right);
	member this.Sub :  -> unit
	Parameters
- right
 - Vector3d
 
Right operand. This parameter is only read from.
- Attributes
 
Applies to
Sub(Vector3d, Vector3d)
Caution
Use static Subtract() method instead.
[System.Obsolete("Use static Subtract() method instead.")]
public static OpenTK.Vector3d Sub(OpenTK.Vector3d a, OpenTK.Vector3d b);
	static member Sub : OpenTK.Vector3d * OpenTK.Vector3d -> OpenTK.Vector3d
	Parameters
- a
 - Vector3d
 
- b
 - Vector3d
 
Returns
- Attributes
 
Applies to
Sub(Vector3d, Vector3d, Vector3d)
Caution
Use static Subtract() method instead.
Subtract one Vector from another
[System.Obsolete("Use static Subtract() method instead.")]
public static void Sub(ref OpenTK.Vector3d a, ref OpenTK.Vector3d b, out OpenTK.Vector3d result);
	static member Sub :  *  *  -> unit
	Parameters
- a
 - Vector3d
 
First operand
- b
 - Vector3d
 
Second operand
- result
 - Vector3d
 
Result of subtraction
- Attributes