Path() public method

Creates a new DrawablePath instance.
public Path ( ) : Drawables
return Drawables
Example #1
0
        /// <summary>
        /// Converts this instance to a <see cref="IDrawables{TQuantumType}"/> instance.
        /// </summary>
        /// <returns>A new <see cref="Drawables"/> instance.</returns>
        public IDrawables <QuantumType> Drawables()
        {
            if (_drawables == null)
            {
                return(new Drawables().Path(this));
            }

            return(_drawables.Path(this));
        }