menu
three_dart package
documentation
three3d/math/vector3.dart
Vector3
addScalar method
addScalar method
dark_mode
light_mode
addScalar
method
Vector3
addScalar
(
num
s
)
Implementation
Vector3 addScalar(num s) { x += s; y += s; z += s; return this; }
three_dart package
documentation
three3d/math/vector3
Vector3
addScalar method
Vector3 class