mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpimath] Fix incorrect docs for Rotation3d default constructor (#6571)
A Rotation3d is not defined by one angle.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user