Lines Matching refs:degrees

386 or scales, or rotates a multiple of 90 degrees, or mirrors in x or y. In all
437 or scales, or rotates a multiple of 90 degrees, or mirrors in x or y. In all
576 #Line # returns if mapped 90 angle remains 90 degrees ##
1585 #Method void setRotate(SkScalar degrees, SkScalar px, SkScalar py)
1589 Sets Matrix to rotate by degrees about a pivot point at (px, py).
1592 Positive degrees rotates clockwise.
1594 #Param degrees angle of axes relative to upright axes ##
1618 #Method void setRotate(SkScalar degrees)
1620 Sets Matrix to rotate by degrees about a pivot point at (0, 0).
1621 Positive degrees rotates clockwise.
1623 #Param degrees angle of axes relative to upright axes ##
2027 #Method void preRotate(SkScalar degrees, SkScalar px, SkScalar py)
2031 Sets Matrix to Matrix multiplied by Matrix constructed from rotating by degrees
2035 Positive degrees rotates clockwise.
2042 Matrix = | D E F |, R(degrees, px, py) = | s c dy |
2050 c = cos(degrees)
2051 s = sin(degrees)
2061 Matrix * R(degrees, px, py) = | D E F | | s c dy | = | Dc+Es -Ds+Ec D*dx+E*dy+F |
2065 #Param degrees angle of axes relative to upright axes ##
2086 #Method void preRotate(SkScalar degrees)
2088 Sets Matrix to Matrix multiplied by Matrix constructed from rotating by degrees
2092 Positive degrees rotates clockwise.
2099 Matrix = | D E F |, R(degrees, px, py) = | s c 0 |
2107 c = cos(degrees)
2108 s = sin(degrees)
2116 Matrix * R(degrees, px, py) = | D E F | | s c 0 | = | Dc+Es -Ds+Ec F |
2120 #Param degrees angle of axes relative to upright axes ##
2509 #Method void postRotate(SkScalar degrees, SkScalar px, SkScalar py)
2513 Sets Matrix to Matrix constructed from rotating by degrees about pivot point
2517 Positive degrees rotates clockwise.
2524 Matrix = | M N O |, R(degrees, px, py) = | s c dy |
2532 c = cos(degrees)
2533 s = sin(degrees)
2543 R(degrees, px, py) * Matrix = |s c dy| |M N O| = |sJ+cM+dy*P sK+cN+dy*Q sL+cO+dy*R|
2547 #Param degrees angle of axes relative to upright axes ##
2568 #Method void postRotate(SkScalar degrees)
2570 Sets Matrix to Matrix constructed from rotating by degrees about pivot point
2574 Positive degrees rotates clockwise.
2581 Matrix = | M N O |, R(degrees, px, py) = | s c 0 |
2589 c = cos(degrees)
2590 s = sin(degrees)
2598 R(degrees, px, py) * Matrix = | s c dy | | M N O | = | sJ+cM sK+cN sL+cO |
2602 #Param degrees angle of axes relative to upright axes ##