[etoys-notify] [JIRA] Commented: (SQ-211) Polygon curves with truly smooth cuvres

Razan Abbass (JIRA) tracker at squeakland.org
Fri Feb 19 11:40:46 EST 2010


    [ http://tracker.squeakland.org/browse/SQ-211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=39124#action_39124 ] 

Razan Abbass commented on SQ-211:
---------------------------------

[buy cheap tramadol online inurl|http://thoughtmesh.net/meshes.php?group=33]
[buy tramadol online without perscription|http://thoughtmesh.net/meshes.php?group=34]
[buy tramadol|http://thoughtmesh.net/meshes.php?group=35]
[cheap tramadol|http://thoughtmesh.net/meshes.php?group=36]
[cheapest tramadol available online|http://thoughtmesh.net/meshes.php?group=37]
[cod tramadol|http://thoughtmesh.net/meshes.php?group=38]
[tramadol 50mg from discount drugstore|http://thoughtmesh.net/meshes.php?group=39]
[best price on tramadol 50 and 100 mg|http://thoughtmesh.net/meshes.php?group=40]
[ingredients in tramadol|http://thoughtmesh.net/meshes.php?group=41]
[tramadol next day|http://thoughtmesh.net/meshes.php?group=42]
[low price tramadol|http://thoughtmesh.net/meshes.php?group=43]
[side effects tramadol|http://thoughtmesh.net/meshes.php?group=44]
[tramadol 50|http://thoughtmesh.net/meshes.php?group=45]
[picture of tramadol hcl 50mg tab mylan|http://thoughtmesh.net/meshes.php?group=46]
[tramadol withdraw|http://thoughtmesh.net/meshes.php?group=47]
[tramadol addiction|http://thoughtmesh.net/meshes.php?group=48]
[tramadol side effects|http://thoughtmesh.net/meshes.php?group=49]
[tramadol dosage for cats|http://thoughtmesh.net/meshes.php?group=50]
[tramadol veterinary dose|http://thoughtmesh.net/meshes.php?group=51]
[tramadol prescription drug|http://thoughtmesh.net/meshes.php?group=52]
[long term effects of tramadol|http://thoughtmesh.net/meshes.php?group=53]
[tramadol sales|http://thoughtmesh.net/meshes.php?group=54]
[tramadol hcl|http://thoughtmesh.net/meshes.php?group=55]
[side effects of tramadol hydrochloride|http://thoughtmesh.net/meshes.php?group=56]
[tramadol information|http://thoughtmesh.net/meshes.php?group=57]
[tramadol hydrochloride picture|http://thoughtmesh.net/meshes.php?group=58]
[what is the medicine tramadol |http://thoughtmesh.net/meshes.php?group=59]
[tramadol 100 mg|http://thoughtmesh.net/meshes.php?group=60]
[tramadol no prescription fedex|http://thoughtmesh.net/meshes.php?group=61]
[buy cheap tramadol on|http://thoughtmesh.net/meshes.php?group=62]
[buy cheap tramadol online inurl|http://thoughtmesh.net/meshes.php?group=63]
[cod accepted tramadol order|http://thoughtmesh.net/meshes.php?group=64]
[tramadol cheap no rx nextday delivery|http://thoughtmesh.net/meshes.php?group=65]
[tramadol overnight|http://thoughtmesh.net/meshes.php?group=66]
[tramadol slow release in burn pain|http://thoughtmesh.net/meshes.php?group=67]
[tramadol pharmacy|http://thoughtmesh.net/meshes.php?group=68]
[what does the pill tramadol look like|http://thoughtmesh.net/meshes.php?group=69]
[tramadol price|http://thoughtmesh.net/meshes.php?group=70]
[tramadol without a prescription|http://thoughtmesh.net/meshes.php?group=71]
[buy cheap tramadol online inurl|http://thoughtmesh.net/meshes.php?group=72]
[buy tramadol at a cheap price online|http://thoughtmesh.net/meshes.php?group=73]
[buy tramadol no rx|http://thoughtmesh.net/meshes.php?group=74]
[tramadol for sale|http://thoughtmesh.net/meshes.php?group=75]
[no perscription required tramadol online|http://thoughtmesh.net/meshes.php?group=76]
[buy cheap ultram|http://thoughtmesh.net/meshes.php?group=77]
[how long does tramadol withdrawal last|http://thoughtmesh.net/meshes.php?group=78]
[buy cheap tramadol online inurl|http://thoughtmesh.net/meshes.php?group=79]
[tramadol side effects|http://thoughtmesh.net/meshes.php?group=80]
[tramadol hcl|http://thoughtmesh.net/meshes.php?group=81]


> Polygon curves with truly smooth cuvres
> ---------------------------------------
>
>                 Key: SQ-211
>                 URL: http://tracker.squeakland.org/browse/SQ-211
>             Project: squeakland
>          Issue Type: Improvement
>          Components: etoys
>            Reporter: Jerome Peace
>            Priority: Eventual
>             Fix For: someday
>
>   Original Estimate: 3 days
>  Remaining Estimate: 3 days
>
> This is essential planting the flag to sell smooth curves to etoy/squeakland.
> The repair is already in 3.9, 3.10.2 on the squeak-dev side.
> The problem:
> Polygons cannot easily imitate ovals.
> Description:
> The curve smoothing currently used for etoys polygons fits the polygon to a cubic spline. The end conditions for the spline are suitable for open curves. (Natural cubic).
> On closed curves etoys polygons always have one sharp bend.
> I considered this a bug and repaired it in a very complete fashion. The solution is in mantis issue 
> http://bugs.squeak.org/view.php?id=504.
> [FIX] Closed curves can be smooth except for one sharp bend.
> The results are polygons that use a closed cubic spline for closed polygons. The effect is that you could now make closed polygons whose curvature did not depend on which vertex was first or last.  Any rotation or reversal of the vertices would produce exactly the same curve.
> The fix was extensive to the curve fitting algorithm however it was isolated from the polygon code by observing the convention that all access to interpolated points was exclusively thru one method. This preserved the former polygon interface to the curve processing.
> It also allowed the slope calculation to be factored out into a few lines of code. This provided hooks to allow subclasses to do some other interesting variations.
> Once that code got into squeak, there was a request for jigsaw pieces. So a subclass MixedCurvedMorph was provided to allow the user the choice of a sharp bend (corners) or not at any vertex.
> The effect was that two polygons could share an edge with exactly the same shape between corners.
> The expressive power of these curves was best described by Subbu's keen eyed daughter who described them as "putty".
> http://bugs.squeak.org/view.php?id=3075
> [Enh] in 7001 there are now Curvier polygons and curves here is the next iteration... MixedCurves.
> Because I was working on polygons the changesets for curvier and mixedCurves accumulated other polygon repairs. Some of those repairs/refactorings are proposed for inclusion in the repairs in
> http://tracker.squeakland.org/browse/SQ-163
> PolygonMorph Issues
> Getting curvier repairs into etoys/squeakland.
> Most of the work is done. The main work would be in adapting things to the current shape of polygon e.g. the presence of the vertex cursor.
> Alternately the changes could be completely in a PolygonMorph subclass. The curvier changes started out there and then as I was trying to get them accepted, Ned Konz noted they should be moved up to Polygon.
> Which I proceeded to do. Providing a preference encapsulated in the query #isCurvier to return to the old polygon behavior.
> In CurveMorph for example #isCurvier is redefined as false for backward compatibility. So far I have had no complaints from squeak-dev users. This might not be a telling test.
> More importantly, Cuvier polygons and Mixed curves have gotten some praise from etoy users, mostly Subbu and family.
> Their main selling point is they give more power to the user and allow a polygon path for objects that want to look like ovals and rectangles. One of the reasons this is desirable is that polygons do their own rotation. Rotated polygon ovals do less screen damage than rendered ellipses. So you get a bit more performance.
> They are also the underpinning for several add on projects. In my experimentation I found I could take a diamond or rectangle shaped polygon and multiply the slopes at all vertices by a constant weight. You get objects with varing curves including ones that could serve as rounded rectangles. (no pesky invisible corners needed.) Translucent colors are preserved during the rotations, unlike with rectangles. The shapes produced are quite pleasing to the eye.
> I have tried pushing things along by working on spec and sending the results to Yoshiki. This did not work out well.
> I am willing to provide more effort only if a path for getting this work into the image is agreed upon.
> The code has been written and should be adaptable to the present state of etoys. I would estimate about a few days work to get it into a joy ride version and then some time to fix up any problems that might reveal. 
> I would expect a minimum of problems. Those kind of theoretical expectations are rarely what practical reality provides.
> Yours in curiosity and service, --Jerome Peace

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.squeakland.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the etoys-notify mailing list