(props)
| 86 | } |
| 87 | |
| 88 | function getScaleX(props) { |
| 89 | if (props.scaleX != null) { |
| 90 | return props.scaleX; |
| 91 | } else if (props.scale != null) { |
| 92 | return props.scale; |
| 93 | } else { |
| 94 | return 1; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | function getScaleY(props) { |
| 99 | if (props.scaleY != null) { |