Lines Matching refs:float2
25 using float2 = vec<2>;
38 AI float dot(float2 a, float2 b) {
39 float2 ab = a*b;
43 AI float cross(float2 a, float2 b) {
44 float2 x = a * b.yx();
75 kFanPoint = 1 << 0, // [float2] Used by wedges. This is the center point the wedges fan around.
76 kStrokeParams = 1 << 1, // [float2] Used when strokes have different widths or join types.
101 // This float2 gets written out with each patch/instance if PatchAttribs::kStrokeParams is enabled.