Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 82a8be034ef45778a36e24db776f17cb > files > 65

polyml-doc-5.4.1-1.fc14.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

<head>
<title>Windows Interface Reference: Shape structure</title>
</head>

<body>

<h1>Shape </h1>

<p>The Shape structure contains functions to draw various shapes.</p>

<pre>structure Shape:
  sig
    type HBRUSH
    type HDC
    type POINT = { x: int, y: int }
    type RECT = { top: int, left: int, bottom: int, right: int }

    val Chord : HDC * RECT * POINT * POINT -&gt; unit
    val Ellipse : HDC * RECT -&gt; unit
    val FillRect : HDC * RECT * HBRUSH -&gt; unit
    val FrameRect : HDC * RECT * HBRUSH -&gt; unit
    val InvertRect : HDC * RECT -&gt; unit
    val Pie : HDC * RECT * POINT * POINT -&gt; unit
    val Polygon : HDC * POINT list -&gt; unit
    val Rectangle : HDC * RECT -&gt; unit
    val RoundRect : HDC * RECT * int * int -&gt; unit
  end</pre>
</body>
</html>