View previous topic :: View next topic |
Author |
Message |
Boscop
Joined: 26 Feb 2009 Posts: 29
|
Posted: Thu May 21, 2009 5:44 pm Post subject: small mistake in arc.light.convexpolygon |
|
|
In module arc.light.convexpolygon
this line:
Code: | assert(verts.length > 3, "Polygon needs at least 3 vertices"); |
has to be changed into:
Code: | assert(verts.length >= 3, "Polygon needs at least 3 vertices"); |
obviously _________________ A programmer is just a tool to convert coffeine into code! |
|
Back to top |
|
|
SirAlaran
Joined: 19 Feb 2007 Posts: 84 Location: Silicon Valley
|
Posted: Fri May 22, 2009 12:39 pm Post subject: |
|
|
Is there anyone around with svn commit access? I've found a few typos like this in the joystick code that I'd like fixed. Ticket _________________ Current projects: Project Fermitas, Arctographer tile map editor, Arclib game library.
Gentoo | Textadept |
|
Back to top |
|
|
jcc7
Joined: 22 Feb 2004 Posts: 657 Location: Muskogee, OK, USA
|
Posted: Wed May 27, 2009 8:28 am Post subject: |
|
|
SirAlaran wrote: | Is there anyone around with svn commit access? I've found a few typos like this in the joystick code that I'd like fixed. Ticket |
Did you try e-mailing clayasaurus as he suggested in the Submit Patches or Extensions here topic? |
|
Back to top |
|
|
clayasaurus
Joined: 21 May 2004 Posts: 857
|
Posted: Fri Nov 06, 2009 10:43 am Post subject: |
|
|
Fixed |
|
Back to top |
|
|
|