Returns a copy of this color plus the color passed in * @param {Color} c - other color * @return {Color}
(c)
| 932 | * @param {Color} c - other color |
| 933 | * @return {Color} */ |
| 934 | add(c) { return new Color(this.r+c.r, this.g+c.g, this.b+c.b, this.a+c.a); } |
| 935 | |
| 936 | /** Returns a copy of this color minus the color passed in |
| 937 | * @param {Color} c - other color |
no outgoing calls
no test coverage detected