menu
three_js_math package
documentation
vector/vector2.dart
Vector2
Vector2.fromJson constructor
Vector2.fromJson constructor
dark_mode
light_mode
Vector2.fromJson
constructor
Vector2.fromJson
(
List
<
double
>
?
json
)
Implementation
Vector2.fromJson(List<double>? json) { if (json != null) { x = json[0]; y = json[1]; } }
three_js_math package
documentation
vector/vector2
Vector2
Vector2.fromJson constructor
Vector2 class