Returns a copy of this color minus the color passed in * @param {Color} c - other color * @return {Color}
(c)
| 937 | * @param {Color} c - other color |
| 938 | * @return {Color} */ |
| 939 | subtract(c) { return new Color(this.r-c.r, this.g-c.g, this.b-c.b, this.a-c.a); } |
| 940 | |
| 941 | /** Returns a copy of this color times the color passed in |
| 942 | * @param {Color} c - other color |
no outgoing calls
no test coverage detected