[wpimath] Fix incorrect docs for Rotation3d default constructor (#6571)

A Rotation3d is not defined by one angle.
This commit is contained in:
Tyler Veness
2024-05-01 09:06:13 -07:00
committed by GitHub
parent 513d1a0a15
commit ae4bcefefc
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ public class Rotation3d
implements Interpolatable<Rotation3d>, ProtobufSerializable, StructSerializable {
private final Quaternion m_q;
/** Constructs a Rotation3d with a default angle of 0 degrees. */
/** Constructs a Rotation3d representing no rotation. */
public Rotation3d() {
m_q = new Quaternion();
}

View File

@@ -20,7 +20,7 @@ namespace frc {
class WPILIB_DLLEXPORT Rotation3d {
public:
/**
* Constructs a Rotation3d with a default angle of 0 degrees.
* Constructs a Rotation3d representing no rotation.
*/
Rotation3d() = default;