menu
libac_dart
omv/types/vector.dart
Vector
add method
add
dark_mode
light_mode
add
method
Vector
add
(
Vector
other
)
Implementation
Vector add(Vector other) { return Vector(x + other.x, y + other.y, z + other.z); }
libac_dart
vector
Vector
add method
Vector class