Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_math_vector.h
| Show First 20 Lines • Show All 357 Lines • ▼ Show 20 Lines | |||||
| void negate_vn(float *array_tar, const int size); | void negate_vn(float *array_tar, const int size); | ||||
| void negate_vn_vn(float *array_tar, const float *array_src, const int size); | void negate_vn_vn(float *array_tar, const float *array_src, const int size); | ||||
| void mul_vn_vn(float *array_tar, const float *array_src, const int size); | void mul_vn_vn(float *array_tar, const float *array_src, const int size); | ||||
| void mul_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | void mul_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | ||||
| void mul_vn_fl(float *array_tar, const int size, const float f); | void mul_vn_fl(float *array_tar, const int size, const float f); | ||||
| void mul_vn_vn_fl(float *array_tar, const float *array_src, const int size, const float f); | void mul_vn_vn_fl(float *array_tar, const float *array_src, const int size, const float f); | ||||
| void add_vn_vn(float *array_tar, const float *array_src, const int size); | void add_vn_vn(float *array_tar, const float *array_src, const int size); | ||||
| void add_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | void add_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | ||||
| void add_vn_fl(float *array_tar, const int size, const float f); | |||||
| void madd_vn_vn(float *array_tar, const float *array_src, const float f, const int size); | void madd_vn_vn(float *array_tar, const float *array_src, const float f, const int size); | ||||
| void madd_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const float f, const int size); | void madd_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const float f, const int size); | ||||
| void sub_vn_vn(float *array_tar, const float *array_src, const int size); | void sub_vn_vn(float *array_tar, const float *array_src, const int size); | ||||
| void sub_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | void sub_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const int size); | ||||
| void msub_vn_vn(float *array_tar, const float *array_src, const float f, const int size); | void msub_vn_vn(float *array_tar, const float *array_src, const float f, const int size); | ||||
| void msub_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const float f, const int size); | void msub_vn_vnvn(float *array_tar, const float *array_src_a, const float *array_src_b, const float f, const int size); | ||||
| void interp_vn_vn(float *array_tar, const float *array_src, const float t, const int size); | void interp_vn_vn(float *array_tar, const float *array_src, const float t, const int size); | ||||
| void copy_vn_i(int *array_tar, const int size, const int val); | void copy_vn_i(int *array_tar, const int size, const int val); | ||||
| Show All 24 Lines | |||||