menu
openworld package
documentation
three_dart/three3d/math/index.dart
Vector3
addScaledVector method
addScaledVector method
dark_mode
light_mode
addScaledVector
method
Vector3
addScaledVector
(
Vector3
v
,
num
s
)
Implementation
Vector3 addScaledVector(Vector3 v, num s) { x += v.x * s; y += v.y * s; z += v.z * s; return this; }
openworld package
documentation
three_dart/three3d/math/index
Vector3
addScaledVector method
Vector3 class