1  /**
     2   * com.sekati.draw.Shape
     3   * @version 1.0.0
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8  
     9  import com.sekati.display.BaseClip;
    10  import com.sekati.draw.*;
    11  import com.sekati.utils.ClassUtils;
    12  
    13  /**
    14   * Shape is the core class for 
    15   * creating clips of drawn shapes.
    16   */
    17  class com.sekati.draw.Shape {
    18  
    19  	private var _mc:MovieClip;
    20  
    21  	/**
    22  	 * Shape Constructor
    23  	 * @param target (MovieClip)
    24  	 * @param initObject (Object) object of properties to create MovieClip with. Depth will automatically be created if none is specified
    25  	 * @return Void
    26  	 */
    27  	public function Shape(target:MovieClip, initObject:Object) {
    28  		_mc = ClassUtils.createEmptyMovieClip( com.sekati.display.BaseClip, target, "__Shape", initObject );
    29  	}
    30  }