Lines Matching defs:copy
171 * Copy the values from one vec2 to another
177 vec2.copy = function(out, a) {
659 * Copy the values from one vec3 to another
665 vec3.copy = function(out, a) {
1147 * Copy the values from one vec4 to another
1153 vec4.copy = function(out, a) {
1617 * Copy the values from one mat2 to another
1623 mat2.copy = function(out, a) {
1875 * Copy the values from one mat2d to another
1881 mat2d.copy = function(out, a) {
2141 * Copy the values from one mat3 to another
2147 mat3.copy = function(out, a) {
2566 * Copy the values from one mat4 to another
2572 mat4.copy = function(out, a) {
2949 if (a !== out) { // If the source and destination differ, copy the unchanged last row
2978 if (a !== out) { // If the source and destination differ, copy the unchanged rows
3021 if (a !== out) { // If the source and destination differ, copy the unchanged rows
3064 if (a !== out) { // If the source and destination differ, copy the unchanged last row
3457 * Copy the values from one quat to another
3464 quat.copy = vec4.copy;