Difference between revisions of "User:Lenny222"

From HaskellWiki
Jump to navigation Jump to search
Line 15: Line 15:
   
 
==== Todo ====
 
==== Todo ====
* ObjectLike: DList instead of List?
 
   
  +
* Arc
* SVG export
 
** SvgPath
 
*** <pre><path d="M 100 100 L 300 100 L 200 300 z" fill="red" stroke="blue" stroke-width="3" /></pre>
 
** SvgRectangle
 
***<pre><rect x="400" y="100" width="400" height="200" fill="yellow" stroke="navy" stroke-width="10" />
 
</pre>
 
   
 
* Diagram
 
* Diagram
Line 33: Line 27:
 
** Spiral
 
** Spiral
 
** http://local.wasp.uwa.edu.au/~pbourke/geometry/supershape/
 
** http://local.wasp.uwa.edu.au/~pbourke/geometry/supershape/
  +
 
* SVG export
 
** SvgPath
 
*** <pre><path d="M 100 100 L 300 100 L 200 300 z" fill="red" stroke="blue" stroke-width="3" /></pre>
 
** SvgRectangle
 
***<pre><rect x="400" y="100" width="400" height="200" fill="yellow" stroke="navy" stroke-width="10" />
 
</pre>
  +
 
* ObjectLike: DList instead of List?
   
 
* SVG XML generation
 
* SVG XML generation

Revision as of 17:00, 10 January 2010

Things i think need improvement

Chlor

Todo

  • Arc
  • Diagram
    • Pie (only for displaying fractions)
  • SVG export
    • SvgPath
      • <path d="M 100 100 L 300 100 L 200 300 z" fill="red" stroke="blue" stroke-width="3" />
    • SvgRectangle
      • <rect x="400" y="100" width="400" height="200" fill="yellow" stroke="navy" stroke-width="10" />
  • ObjectLike: DList instead of List?
  • SVG XML generation
    • HStringTemplate?
    • HXT?
    • HaXml?
  • Layout
    • Instances
      • Column
      • Grid (cols, rows, margins)
      • Margin/Frame
        • content size (absolute, relative, remaining)
        • margin sizes (absolute, relative, remaining)
  • use HLint
  • AffineTransformation
  • Path
    • approximate :: [Vector2D] -> [Segment]

Ideas

  • layout
    • Table
    • SpaceHorizontal
    • SpaceVertical

Simplified Haskell homepage

A simplified Haskell frontpage

Why?