<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Does anybody know O'Haskell or Timber and its interface Tk.hs to Tcl/Tk
(see <a href="http://fldit-www.cs.uni-dortmund.de/%7Epeter/tk.html">here</a>)?<br>
<br>
I have the following problem:<br>
<br>
<a href="http://fldit-www.cs.uni-dortmund.de/%7Epeter/Tk.hs">Tk.hs</a>
contains a record (structure) <i>Canvas</i> with selectors
<pre>line      :: [(Int,Int)]      -&gt; [LineOpt]      -&gt; Request Line
polygon   :: [(Int,Int)]      -&gt; [PolygonOpt]   -&gt; Request Polygon

that are compiled into synonymous Tk widgets for lines and polygons, respectively. Unfortunately, Tk.hs crashes if the point list parameter of line or polygon 
contains more than 100 points. Why??? 

Of course, one may split a point list into smaller ones that are compiled correctly. But this may not produce the same picture, for instance, if the entire list 
represents a polygon to be filled or a line to be smoothened.

Peter

</pre>
</body>
</html>