Struct BearingParameters
Last update: 16.07.2025Namespace: VM.API.Pre.GearTrain
Assembly: VM.API.Pre.GearTrain.dll
This struct represents the bearing parameters for the operation of body to drivetrain.
public struct BearingParameters
Constructors
BearingParameters()
Default constructor
public BearingParameters()
BearingParameters(string, string, Vector)
Initializes a new instance of the
public BearingParameters(string bodyName, string bearingName, Vector position)
Parameters
bodyName string
The bodyName of the bearing parameters.
bearingName string
The bearingName of the bearing parameters.
position Vector
The position of the bearing parameters.
Properties
BearingName
The value for the bearing name. The default value is "".
public string BearingName { readonly get; set; }
Property Value
BodyName
The value for the body name. The default value is "".
public string BodyName { readonly get; set; }
Property Value
Position
The value for the position. The default value is (0, 0, 0).
public Vector Position { readonly get; set; }
Property Value
Vector