Skip to content

Commit cb5995f

Browse files
authored
chore: Build Models (#68)
1 parent 7a2dd98 commit cb5995f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

models/csharp/EphysLinkModels.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ public struct PlatformInfo
7979
{
8080
public string Name;
8181
public string CliName;
82-
public int NumAxes;
82+
public int AxesCount;
8383
public Vector4 Dimensions;
8484

85-
public PlatformInfo(string name, string cliName, int numAxes, Vector4 dimensions)
85+
public PlatformInfo(string name, string cliName, int axesCount, Vector4 dimensions)
8686
{
8787
Name = name;
8888
CliName = cliName;
89-
NumAxes = numAxes;
89+
AxesCount = axesCount;
9090
Dimensions = dimensions;
9191
}
9292
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"$defs": {"Vector4": {"description": "4D vector.\n\nAttributes:\n x: X component.\n y: Y component.\n z: Z component.\n w: W component.", "properties": {"x": {"default": 0.0, "title": "X", "type": "number"}, "y": {"default": 0.0, "title": "Y", "type": "number"}, "z": {"default": 0.0, "title": "Z", "type": "number"}, "w": {"default": 0.0, "title": "W", "type": "number"}}, "title": "Vector4", "type": "object"}}, "description": "Information about the manipulator platform.\n\nAttributes:\n name: Name of the manipulator platform.\n cli_name: CLI identifier for the manipulator platform (for the `-t` flag).\n num_axes: Number of axes on a manipulator.\n dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).", "properties": {"Name": {"minLength": 1, "title": "Name", "type": "string"}, "CliName": {"minLength": 1, "title": "Cliname", "type": "string"}, "NumAxes": {"default": 0, "minimum": -1, "title": "Numaxes", "type": "integer"}, "Dimensions": {"$ref": "#/$defs/Vector4", "default": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 0.0}}}, "required": ["Name", "CliName"], "title": "PlatformInfo", "type": "object"}
1+
{"$defs": {"Vector4": {"description": "4D vector.\n\nAttributes:\n x: X component.\n y: Y component.\n z: Z component.\n w: W component.", "properties": {"x": {"default": 0.0, "title": "X", "type": "number"}, "y": {"default": 0.0, "title": "Y", "type": "number"}, "z": {"default": 0.0, "title": "Z", "type": "number"}, "w": {"default": 0.0, "title": "W", "type": "number"}}, "title": "Vector4", "type": "object"}}, "description": "Information about the manipulator platform.\n\nAttributes:\n name: Name of the manipulator platform.\n cli_name: CLI identifier for the manipulator platform (for the `-t` flag).\n axes_count: Number of axes on a manipulator.\n dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).", "properties": {"Name": {"minLength": 1, "title": "Name", "type": "string"}, "CliName": {"minLength": 1, "title": "Cliname", "type": "string"}, "AxesCount": {"default": 0, "minimum": -1, "title": "Axescount", "type": "integer"}, "Dimensions": {"$ref": "#/$defs/Vector4", "default": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 0.0}}}, "required": ["Name", "CliName"], "title": "PlatformInfo", "type": "object"}

0 commit comments

Comments
 (0)