mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
[docs] Add missing JavaDocs (#6146)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/**
|
||||
* Autogenerated file! Do not manually edit this file. This version is regenerated
|
||||
* any time the publish task is run, or when this file is deleted.
|
||||
*/
|
||||
|
||||
@@ -864,8 +864,13 @@ class Color {
|
||||
wpi::hexdigit(b % 16)}};
|
||||
}
|
||||
|
||||
/// Red component (0-1).
|
||||
double red = 0.0;
|
||||
|
||||
/// Green component (0-1).
|
||||
double green = 0.0;
|
||||
|
||||
/// Blue component (0-1).
|
||||
double blue = 0.0;
|
||||
|
||||
private:
|
||||
|
||||
@@ -115,8 +115,13 @@ class Color8Bit {
|
||||
wpi::hexdigit(blue / 16), wpi::hexdigit(blue % 16)}};
|
||||
}
|
||||
|
||||
/// Red component (0-255).
|
||||
int red = 0;
|
||||
|
||||
/// Green component (0-255).
|
||||
int green = 0;
|
||||
|
||||
/// Blue component (0-255).
|
||||
int blue = 0;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user