21 lines
291 B
Protocol Buffer
21 lines
291 B
Protocol Buffer
// Generated by https://github.com/foxglove/foxglove-sdk
|
|
|
|
syntax = "proto3";
|
|
|
|
package foxglove;
|
|
|
|
// A quaternion representing a rotation in 3D space
|
|
message Quaternion {
|
|
// x value
|
|
double x = 1;
|
|
|
|
// y value
|
|
double y = 2;
|
|
|
|
// z value
|
|
double z = 3;
|
|
|
|
// w value
|
|
double w = 4;
|
|
}
|