// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // WARNING: // This file contains documentation that is merged into the real source. // Do not make code changes here. /// @domName SVGPathSegCurvetoCubicAbs interface SVGPathSegCurvetoCubicAbs extends SVGPathSeg { /** @domName SVGPathSegCurvetoCubicAbs.x */ num x; /** @domName SVGPathSegCurvetoCubicAbs.x1 */ num x1; /** @domName SVGPathSegCurvetoCubicAbs.x2 */ num x2; /** @domName SVGPathSegCurvetoCubicAbs.y */ num y; /** @domName SVGPathSegCurvetoCubicAbs.y1 */ num y1; /** @domName SVGPathSegCurvetoCubicAbs.y2 */ num y2; }