nt_client 0.5.1

A blazingly fast NetworkTables 4.1 client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

package wpi.proto;

message ProtobufCubicHermiteSpline {
  repeated double x_initial = 1;
  repeated double x_final = 2;
  repeated double y_initial = 3;
  repeated double y_final = 4;
}

message ProtobufQuinticHermiteSpline {
  repeated double x_initial = 1;
  repeated double x_final = 2;
  repeated double y_initial = 3;
  repeated double y_final = 4;
}