@@ -19,12 +19,8 @@ goog.require('acgraph.vector.Renderer');
1919goog . require ( 'acgraph.vector.Text' ) ;
2020goog . require ( 'acgraph.vector.UnmanagedLayer' ) ;
2121goog . require ( 'acgraph.vector.primitives' ) ;
22- goog . require ( 'acgraph.vector.svg.Renderer' ) ;
23- goog . require ( 'acgraph.vector.svg.Stage' ) ;
24- goog . require ( 'acgraph.vector.vml.Clip' ) ;
25- goog . require ( 'acgraph.vector.vml.Renderer' ) ;
26- goog . require ( 'acgraph.vector.vml.Stage' ) ;
27- goog . require ( 'acgraph.vector.vml.Text' ) ;
22+ goog . require ( 'acgraph.vector.svg' ) ;
23+ goog . require ( 'acgraph.vector.vml' ) ;
2824goog . require ( 'goog.dom' ) ;
2925goog . require ( 'goog.userAgent' ) ;
3026
@@ -412,7 +408,7 @@ acgraph.hatchFill = function(opt_type, opt_color, opt_thickness, opt_size) {
412408/**
413409 Creates an instance of the{@link acgraph.vector.PatternFill} class.<br/>
414410 To learn more about working with pattern fills, see: {@link acgraph.vector.PatternFill}
415- @param {!acgraph .math.Rect } bounds The bounds of the pattern. Defines the size and offset of the pattern.
411+ @param {!goog .math.Rect } bounds The bounds of the pattern. Defines the size and offset of the pattern.
416412 @return {!acgraph.vector.PatternFill } An instance of the {@link acgraph.vector.PatternFill} class for method chaining.
417413 */
418414acgraph . patternFill = function ( bounds ) {
@@ -422,7 +418,7 @@ acgraph.patternFill = function(bounds) {
422418
423419/**
424420 Creates an instance ot the {@link acgraph.vector.Clip} class.
425- @param {(number|Array.<number>|acgraph .math.Rect|Object|null|acgraph.vector.Shape)= } opt_leftOrShape Left coordinate of bounds
421+ @param {(number|Array.<number>|goog .math.Rect|Object|null|acgraph.vector.Shape)= } opt_leftOrShape Left coordinate of bounds
426422 or rect or array or object representing bounds.
427423 @param {number= } opt_top Top coordinate.
428424 @param {number= } opt_width Width of the rect.
@@ -535,20 +531,22 @@ acgraph.updateReferences = function() {
535531} ;
536532
537533//exports
538- goog . exportSymbol ( 'acgraph.create' , acgraph . create ) ;
539- goog . exportSymbol ( 'acgraph.type' , acgraph . type ) ;
540- goog . exportSymbol ( 'acgraph.server' , acgraph . server ) ;
541- goog . exportSymbol ( 'acgraph.StageType.SVG' , acgraph . StageType . SVG ) ;
542- goog . exportSymbol ( 'acgraph.StageType.VML' , acgraph . StageType . VML ) ;
543- goog . exportSymbol ( 'acgraph.rect' , acgraph . rect ) ;
544- goog . exportSymbol ( 'acgraph.circle' , acgraph . circle ) ;
545- goog . exportSymbol ( 'acgraph.ellipse' , acgraph . ellipse ) ;
546- goog . exportSymbol ( 'acgraph.path' , acgraph . path ) ;
547- goog . exportSymbol ( 'acgraph.text' , acgraph . text ) ;
548- goog . exportSymbol ( 'acgraph.layer' , acgraph . layer ) ;
549- goog . exportSymbol ( 'acgraph.image' , acgraph . image ) ;
550- goog . exportSymbol ( 'acgraph.hatchFill' , acgraph . hatchFill ) ;
551- goog . exportSymbol ( 'acgraph.patternFill' , acgraph . patternFill ) ;
552- goog . exportSymbol ( 'acgraph.clip' , acgraph . clip ) ;
553- goog . exportSymbol ( 'acgraph.useAbsoluteReferences' , acgraph . useAbsoluteReferences ) ;
554- goog . exportSymbol ( 'acgraph.updateReferences' , acgraph . updateReferences ) ;
534+ ( function ( ) {
535+ goog . exportSymbol ( 'acgraph.create' , acgraph . create ) ;
536+ goog . exportSymbol ( 'acgraph.type' , acgraph . type ) ;
537+ goog . exportSymbol ( 'acgraph.server' , acgraph . server ) ;
538+ goog . exportSymbol ( 'acgraph.StageType.SVG' , acgraph . StageType . SVG ) ;
539+ goog . exportSymbol ( 'acgraph.StageType.VML' , acgraph . StageType . VML ) ;
540+ goog . exportSymbol ( 'acgraph.rect' , acgraph . rect ) ;
541+ goog . exportSymbol ( 'acgraph.circle' , acgraph . circle ) ;
542+ goog . exportSymbol ( 'acgraph.ellipse' , acgraph . ellipse ) ;
543+ goog . exportSymbol ( 'acgraph.path' , acgraph . path ) ;
544+ goog . exportSymbol ( 'acgraph.text' , acgraph . text ) ;
545+ goog . exportSymbol ( 'acgraph.layer' , acgraph . layer ) ;
546+ goog . exportSymbol ( 'acgraph.image' , acgraph . image ) ;
547+ goog . exportSymbol ( 'acgraph.hatchFill' , acgraph . hatchFill ) ;
548+ goog . exportSymbol ( 'acgraph.patternFill' , acgraph . patternFill ) ;
549+ goog . exportSymbol ( 'acgraph.clip' , acgraph . clip ) ;
550+ goog . exportSymbol ( 'acgraph.useAbsoluteReferences' , acgraph . useAbsoluteReferences ) ;
551+ goog . exportSymbol ( 'acgraph.updateReferences' , acgraph . updateReferences ) ;
552+ } ) ( ) ;
0 commit comments