Struct Twist2d
Assembly: WPILibSharp.dll
Syntax
public struct Twist2d : IEquatable<Twist2d>
Constructors
|
Improve this Doc
View Source
Twist2d(Length, Length, Angle)
Declaration
public Twist2d(in Length dx, in Length dy, in Angle dtheta)
Parameters
Type |
Name |
Description |
UnitsNet.Length |
dx |
|
UnitsNet.Length |
dy |
|
UnitsNet.Angle |
dtheta |
|
Properties
|
Improve this Doc
View Source
dTheta
Declaration
public Angle dTheta { get; }
Property Value
Type |
Description |
UnitsNet.Angle |
|
|
Improve this Doc
View Source
dX
Declaration
public Length dX { get; }
Property Value
Type |
Description |
UnitsNet.Length |
|
|
Improve this Doc
View Source
dY
Declaration
public Length dY { get; }
Property Value
Type |
Description |
UnitsNet.Length |
|
Methods
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
View Source
Equals(Twist2d)
Declaration
public bool Equals(Twist2d other)
Parameters
Type |
Name |
Description |
Twist2d |
other |
|
Returns
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Operators
|
Improve this Doc
View Source
Equality(Twist2d, Twist2d)
Declaration
public static bool operator ==(in Twist2d left, in Twist2d right)
Parameters
Returns
|
Improve this Doc
View Source
Inequality(Twist2d, Twist2d)
Declaration
public static bool operator !=(in Twist2d left, in Twist2d right)
Parameters
Returns
Implements