18 lines
299 B
Protocol Buffer
18 lines
299 B
Protocol Buffer
// Generated by https://github.com/foxglove/foxglove-sdk
|
|
|
|
syntax = "proto3";
|
|
|
|
package foxglove;
|
|
|
|
// A vector in 3D space that represents a direction only
|
|
message Vector3 {
|
|
// x coordinate length
|
|
double x = 1;
|
|
|
|
// y coordinate length
|
|
double y = 2;
|
|
|
|
// z coordinate length
|
|
double z = 3;
|
|
}
|