RoboDave.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>RoboDave</name>
    </assembly>
    <members>
        <member name="T:RoboDave.Extensions">
            <summary>
            Extensions
            </summary>
        </member>
        <member name="M:RoboDave.Extensions.GetTxtBtwn(System.String,System.String,System.String,System.Int32)">
            <summary>
                Gets the txt that lies between these two strings
            </summary>
        </member>
        <member name="M:RoboDave.Extensions.GetLastTxtBtwn(System.String,System.String,System.String,System.Int32)">
            <summary>
                Gets the txt that lies between these two strings
            </summary>
        </member>
        <member name="M:RoboDave.Extensions.GetTxtBtwn(System.String,System.String,System.String,System.Int32,System.Boolean)">
            <summary>
                Gets the txt that lies between these two strings
            </summary>
        </member>
        <member name="T:RoboDave.StatisticsExtensions">
            <summary>
            Extensions for Statistics
            </summary>
        </member>
        <member name="F:RoboDave.Generators.TypedImage.Random">
            <summary>
            Random bits of color
            </summary>
        </member>
        <member name="F:RoboDave.Generators.TypedImage.Pixel">
            <summary>
            Blocks of random color
            </summary>
        </member>
        <member name="F:RoboDave.Generators.TypedImage.SimpleShape">
            <summary>
            Simple Shapes drawn randomly
            </summary>
        </member>
        <member name="F:RoboDave.Generators.TypedImage.GridShapes">
            <summary>
            Inserts simple shapes in blocks
            </summary>
        </member>
        <member name="T:RoboDave.Generators.RandomImage">
            <summary>
            <para type="synopsis">Generates a new random image based on given patterns</para>
            <para type="description"></para>
            <example>
                <code>New-RandomImage -Type Random</code>
                <para>Creates a random bitmap</para>
            </example>
            <example>
                <code>New-RandomImage -Type Pixel -PixelSize 64 -Width 1024 -Height 1024</code>
                <para>Creates an image of size 1024x1024 with 'blocks' of 64 pixels</para>
            </example>
            <example>
                <code>New-RandomImage -Type SimpleShape -Width 1024 -Height 1024 -Shape Circle -ShapeCount 2 -IsFilled $true</code>
                <para>Creates an image of size 1024x1024 two filled circles of random size and color</para>
            </example>
            <example>
                <code>New-RandomImage -Type SimpleShape -Width 1024 -Height 1024 -Shape RandomPolygon -PolygonPointCount 22</code>
                <para>Creates an image of size 1024x1024 with one random polygon with 22 points</para>
            </example>
            <example>
                <code>New-RandomImage -Type SimpleShape -Width 1024 -Height 1024 -Shape RandomShape -ShapeCount 20 -IsFilled $true</code>
                <para>Creates an image of size 1024x1024 with twenty random filled shapes of random size and color</para>
            </example>
            <example>
                <code>New-RandomImage -Type GridShapes -Width 1024 -Height 1024 -PixelSize 64 -Shape RandomShape -IsFilled $true -PolygonPointCount 5</code>
                <para>Creates an image of size 1024x1024 with 16x16 blocks each with a random filled shape (and if its a polygon then it will have 5 points)</para>
            </example>
            </summary>
        </member>
        <member name="P:RoboDave.Generators.RandomImage.Type">
            <summary>
            <para type="description">Defines which algorithm to use to generate the image</para>
            </summary>
        </member>
        <member name="T:RoboDave.Generators.VHash.HashType">
            <summary>
            Type of Visual Hash
            </summary>
        </member>
        <member name="F:RoboDave.Generators.VHash.HashType.Direct">
            <summary>
            Direct - directly convert data (bytes) into 8Bit indexed BMP
            </summary>
        </member>
        <member name="F:RoboDave.Generators.VHash.HashType.Flag">
            <summary>
            Flag - directly convert data (bytes) into FLAG
            </summary>
        </member>
        <member name="F:RoboDave.Generators.VHash.HashType.HashedFlag">
            <summary>
            HashedFlag - uses hash of data to turn into FLAG
            </summary>
        </member>
        <member name="F:RoboDave.Generators.VHash.HashType.Emoji">
            <summary>
            Emoji
            </summary>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.FindPoint(RoboDave.Geo.Coordinate,System.Double,System.Double)">
            <summary>
            Finds a new coordinate based on an initial coordinate, a distance (feet), and a bearing (degrees from North)
            </summary>
            <param name="start">Initial Coordinate</param>
            <param name="distance">Distance (in feet)</param>
            <param name="bearing">Bearing (in degrees from North) </param>
            <returns>new coordinate</returns>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.FindBearing(RoboDave.Geo.Coordinate,RoboDave.Geo.Coordinate)">
            <summary>
            Finds the bearing (in degrees from North) from two points
            </summary>
            <param name="one">One Point</param>
            <param name="two">Another Point</param>
            <returns></returns>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.FindMidPoint(RoboDave.Geo.Coordinate,RoboDave.Geo.Coordinate)">
            <summary>
            Finds the mid point between two points
            </summary>
            <param name="one"></param>
            <param name="two"></param>
            <returns></returns>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.FindDistance(RoboDave.Geo.Coordinate,RoboDave.Geo.Coordinate)">
            <summary>
            Returns the distance (in feet) between two coordinates using the haversine formula
            </summary>
            <param name="one">First coordinate point</param>
            <param name="two">Second coordinate point</param>
            <returns>distance in feet</returns>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.DegreesToRadians(System.Double)">
            <summary>
            Converts degrees to radians
            </summary>
            <param name="angle">angle in degrees</param>
            <returns></returns>
        </member>
        <member name="M:RoboDave.Geo.Coordinate.RadiansToDegrees(System.Double)">
            <summary>
            Converts radians to degrees
            </summary>
            <param name="angle">angle in radians</param>
            <returns></returns>
        </member>
        <member name="F:RoboDave.Geo.Coordinate.R">
            <summary>
            This is the standard mean radius of the earth in feet
            </summary>
        </member>
        <member name="T:RoboDave.Random.MadLib">
            <summary>
            TODO: Update summary.
            </summary>
        </member>
        <member name="T:RoboDave.Random.StringType">
            <summary>
            Types of Strings
            </summary>
        </member>
        <member name="T:RoboDave.Random.StringGenerator">
            <summary>
            Generates a String
            </summary>
        </member>
    </members>
</doc>