Class Twist3dStruct
java.lang.Object
org.wpilib.math.geometry.struct.Twist3dStruct
-
Field Summary
Fields inherited from interface Struct
kSizeBool, kSizeDouble, kSizeFloat, kSizeInt16, kSizeInt32, kSizeInt64, kSizeInt8 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the schema.intgetSize()Gets the serialized size (in bytes).Gets the Class object for the stored value.Gets the type name (e.g.voidpack(ByteBuffer bb, Twist3d value) Puts object contents to a ByteBuffer starting at the current position.unpack(ByteBuffer bb) Deserializes an object from a raw struct serialized ByteBuffer starting at the current position.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Struct
clone, getNested, getTypeString, isCloneable, isImmutable, unpackInto
-
Constructor Details
-
Twist3dStruct
public Twist3dStruct()
-
-
Method Details
-
getTypeClass
Description copied from interface:StructGets the Class object for the stored value.- Specified by:
getTypeClassin interfaceStruct<Twist3d>- Returns:
- Class
-
getTypeName
Description copied from interface:StructGets the type name (e.g. for schemas of other structs). This should be globally unique among structs.- Specified by:
getTypeNamein interfaceStruct<Twist3d>- Returns:
- type name
-
getSize
-
getSchema
-
unpack
Description copied from interface:StructDeserializes an object from a raw struct serialized ByteBuffer starting at the current position. Will increment the ByteBuffer position by getStructSize() bytes. Will not otherwise modify the ByteBuffer (e.g. byte order will not be changed). -
pack
Description copied from interface:StructPuts object contents to a ByteBuffer starting at the current position. Will increment the ByteBuffer position by getStructSize() bytes. Will not otherwise modify the ByteBuffer (e.g. byte order will not be changed).
-