Files
YAGSL/swervelib/parser/json/modules/LocationJson.java

19 lines
522 B
Java
Raw Normal View History

2023-02-13 17:21:24 -06:00
package swervelib.parser.json.modules;
2023-02-13 14:37:05 -06:00
/**
* Location JSON parsed class. Used to access the JSON data. Module locations, in inches, as distances to the center of
* the robot. Positive x is torwards the robot front, and * +y is torwards robot left.
*/
public class LocationJson
{
/**
* Location of the swerve module in inches from the center of the robot horizontally.
*/
public double x;
/**
* Location of the swerve module in inches from the center of the robot vertically.
*/
public double y;
}