Lines Matching refs:s
107 void VScale(vector *a, flt s) { in VScale() argument
108 a->x *= s; in VScale()
109 a->y *= s; in VScale()
110 a->z *= s; in VScale()
113 void ColorAddS(color *a, color *b, flt s) { in ColorAddS() argument
114 a->r += b->r * s; in ColorAddS()
115 a->g += b->g * s; in ColorAddS()
116 a->b += b->b * s; in ColorAddS()
125 void ColorScale(color *a, flt s) { in ColorScale() argument
126 a->r *= s; in ColorScale()
127 a->g *= s; in ColorScale()
128 a->b *= s; in ColorScale()