Home | History | Annotate | Download | only in gfx

Lines Matching full:scale

41   // Scales all three axes by the given scale.
42 void Scale(float scale) {
43 Scale(scale, scale, scale);
46 // Scales each axis by the corresponding given scale.
47 void Scale(float x_scale, float y_scale, float z_scale) {
48 origin_.Scale(x_scale, y_scale, z_scale);
118 inline BoxF ScaleBox(const BoxF& b, float scale) {
119 return ScaleBox(b, scale, scale, scale);