Struct Pose2d
Assembly: WPILibSharp.dll
Syntax
public struct Pose2d : IEquatable<Pose2d>
Constructors
|
Improve this Doc
View Source
Pose2d(Length, Length, Rotation2d)
Declaration
public Pose2d(Length x, Length y, Rotation2d rotation)
Parameters
Type |
Name |
Description |
UnitsNet.Length |
x |
|
UnitsNet.Length |
y |
|
Rotation2d |
rotation |
|
|
Improve this Doc
View Source
Pose2d(Translation2d, Rotation2d)
Declaration
public Pose2d(in Translation2d translation, in Rotation2d rotation)
Parameters
Properties
|
Improve this Doc
View Source
Rotation
Declaration
public Rotation2d Rotation { get; }
Property Value
|
Improve this Doc
View Source
Translation
Declaration
public Translation2d Translation { get; }
Property Value
Methods
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object other)
Parameters
Type |
Name |
Description |
Object |
other |
|
Returns
Overrides
|
Improve this Doc
View Source
Equals(Pose2d)
Declaration
public bool Equals(Pose2d other)
Parameters
Type |
Name |
Description |
Pose2d |
other |
|
Returns
|
Improve this Doc
View Source
Exp(Twist2d)
Declaration
public Pose2d Exp(in Twist2d twist)
Parameters
Type |
Name |
Description |
Twist2d |
twist |
|
Returns
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
View Source
RelativeTo(Pose2d)
Declaration
public Pose2d RelativeTo(in Pose2d other)
Parameters
Type |
Name |
Description |
Pose2d |
other |
|
Returns
|
Improve this Doc
View Source
Declaration
public Pose2d TransformBy(in Transform2d other)
Parameters
Returns
Operators
|
Improve this Doc
View Source
Declaration
public static Pose2d operator +(in Pose2d left, in Transform2d right)
Parameters
Returns
|
Improve this Doc
View Source
Equality(Pose2d, Pose2d)
Declaration
public static bool operator ==(in Pose2d left, in Pose2d right)
Parameters
Returns
|
Improve this Doc
View Source
Inequality(Pose2d, Pose2d)
Declaration
public static bool operator !=(in Pose2d left, in Pose2d right)
Parameters
Returns
|
Improve this Doc
View Source
Subtraction(Pose2d, Pose2d)
Declaration
public static Transform2d operator -(in Pose2d left, in Pose2d right)
Parameters
Returns
Implements