Click or drag to resize

Calculations Class

Provides methods for doing common calculations between vectors.
Inheritance Hierarchy
SystemObject
  LightBuzzCalculations

Namespace:  LightBuzz
Assembly:  LightBuzz (in LightBuzz.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static class Calculations
Methods
  NameDescription
Public methodStatic memberAngle(Vector2D, Vector2D, Vector2D)
Calculates the angle between the specified vectors in the 2D space.
Public methodStatic memberAngle(Vector3D, Vector3D, Vector3D)
Calculates the angle between the specified vectors in the 3D space.
Public methodStatic memberAngle(Vector3D, Vector3D, Vector3D, Axis)
Calculates the angle between the specified vectors around the specified axis.
Public methodStatic memberAngle(Vector3D, Vector3D, Vector3D, Axis, Boolean)
Calculates the angle between the specified vectors around the specified axis and determines whether the angle will be signed/unsigned and big/small.
Public methodStatic memberAngle(Vector3D, Vector3D, Vector3D, Axis, Boolean, Boolean)
Calculates the angle between the specified vectors around the specified axis and determines whether the angle will be signed/unsigned and big/small.
Public methodStatic memberDistance(Vector2D, Vector2D)
Calculates the distace between the specified vectors in the 2D space.
Public methodStatic memberDistance(Vector3D, Vector3D)
Calculates the distace between the specified vectors in the 3D space.
Public methodStatic memberDistance(Vector2D, Vector2D, Axis)
Calclulates the distance between the specified points in the specified axis.
Public methodStatic memberDistance(Vector3D, Vector3D, Axis)
Calclulates the distance between the specified points in the specified axis.
Public methodStatic memberDistance(Vector2D, Vector2D, Axis, Boolean)
Calclulates the distance between the specified points in the specified axis.
Public methodStatic memberDistance(Vector3D, Vector3D, Axis, Boolean)
Calclulates the distance between the specified points in the specified axis.
Public methodStatic memberRotation(Vector3D, Vector3D, Axis)
Calculates the tilt/rotation of the specified segment around the specified axis.
Public methodStatic memberRotation(Vector3D, Vector3D, Axis, Boolean)
Calculates the tilt/rotation of the specified segment around the specified axis.
Public methodStatic memberRotation(Vector3D, Vector3D, Axis, Boolean, Boolean)
Calculates the tilt/rotation of the specified segment around the specified axis.
Top
See Also