Returns a new color that is a copy of this * @return {Color}
()
| 927 | /** Returns a new color that is a copy of this |
| 928 | * @return {Color} */ |
| 929 | copy() { return new Color(this.r, this.g, this.b, this.a); } |
| 930 | |
| 931 | /** Returns a copy of this color plus the color passed in |
| 932 | * @param {Color} c - other color |
no outgoing calls
no test coverage detected