Re: [matrix][cssom-view] DOMPoint, DOMPointLiteral definitions

On Mon, Sep 23, 2013 at 11:28 AM, Simon Fraser <smfr@me.com> wrote:
> Why do we need both DOMPoint and DOMPointLiteral?

DOMPointLiteral exists so that you can call methods that expect points
without having to wrap it in a verbose DOMPoint() constructor at
call-time.

That is, you can say "el.transformPoint({x:5, y:10})" instead of
"el.transformPoint(new DOMPoint(5, 10))".

~TJ

Received on Monday, 23 September 2013 19:30:52 UTC