menu
three_dart package
documentation
three3d/math/vector4.dart
Vector4
add method
add method
dark_mode
light_mode
add
method
Vector4
add
(
Vector4
v
)
Implementation
Vector4 add(Vector4 v) { x += v.x; y += v.y; z += v.z; w += v.w; return this; }
three_dart package
documentation
three3d/math/vector4
Vector4
add method
Vector4 class