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