| SbVec3fEquals Method (Object, Single) | 
            Returns a value indicating whether this instance is equal to a specified object 
            with given tolerance. 
            
 
Namespace: OIV.InventorAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2025.2.0.Release.47655112efc68a70bb943ee3bd5c1e27763923ef
Syntaxpublic bool Equals(
	Object obj,
	float tolerance
)
Public Function Equals ( 
	obj As Object,
	tolerance As Single
) As Boolean
public:
bool Equals(
	Object^ obj, 
	float tolerance
)
member Equals : 
        obj : Object * 
        tolerance : float32 -> bool 
Parameters
- obj
 - Type: SystemObject
An object to compare to this instance. - tolerance
 - Type: SystemSingle
Acceptable tolerance for equality test. 
Return Value
Type: 
Booleantrue if 
obj is a 
SbVec3f and has 
            the same value as this instance within the given tolerance, 
false otherwise.
See Also