Procedurally generated polygon issue

About advanced scenes, and the Thyme scripting language used in Algodoo.

Procedurally generated polygon issue

Postby RA2lover » Fri Jan 27, 2012 1:06 am

I'm trying to make a spiral polygon on algodoo through a lua script to use it as a texture for an object i'm making, but i've been experiencing polygon artifacts and i'm not sure of the cause of them.
i'm using algodoo for education 2.0.1 b12(because i see no reason to update it for now).

Script:
Code: Select all
PolygonTable={}
DegreeIncrement=6--how many degrees of rotation between each polygon
ThreadSize=1
EmptyAreaSize=1
Source={0,0}--starting point


--these functions take degrees as arguments.
function sin(x)
return math.sin(math.rad(x))
end

function cos(x)
return math.cos(math.rad(x))
end

function PP(source, dist, ang)--Polar Projection
return {(sin(ang)*dist)+source[1], (cos(ang)*dist)+source[2]}
end


IncrementPerStep=(ThreadSize+EmptyAreaSize)/(360/DegreeIncrement) --how much to move the spiral per step
for i= 1,600 do--not sure of what the end value should be because i don't know how large the texture will need to be.
local poly ={}
local dist = (IncrementPerStep*(i-1))
poly[1]=PP(Source,dist,i*DegreeIncrement)
poly[2]=PP(Source,dist+ThreadSize,i*DegreeIncrement)
poly[3]=PP(Source,dist+(IncrementPerStep)+ThreadSize,(i+1)*DegreeIncrement)
poly[4]=PP(Source,dist+(IncrementPerStep),(i+1)*DegreeIncrement)

PolygonTable[i]=poly
end

String="Scene.AddPolygon{(Vecs:=["
for i=1,#PolygonTable do
String=String.."["..PolygonTable[i][1][2]..","..PolygonTable[i][4][2].."],"
end
for i=#PolygonTable, 1,-1 do
String=String.."["..PolygonTable[i][2][1]..","..PolygonTable[i][3][2].."],"
end

String=string.sub(String,1,-2).."])}"

Print(String)



and for those unable to run the script/too lazy to do so, here's its output(just paste it on the console):
Code: Select all
Scene.AddPolygon{(Vecs:=[[0,0.03260492002446],[0.03260492002446,0.06340376775301],[0.06340376775301,0.09135454576426],[0.09135454576426,0.11547005383793],[0.11547005383793,0.13483616572916],[0.13483616572916,0.14862896509548],[0.14862896509548,0.15613047481707],[0.15613047481707,0.15674273394466],[0.15674273394466,0.15],[0.15,0.13557888102527],[0.13557888102527,0.11330623127081],[0.11330623127081,0.083164676327104],[0.083164676327104,0.045295667415983],[0.045295667415983,2.8574148255855e-017],[2.8574148255855e-017,-0.052264231633827],[-0.052264231633827,-0.1108862351028],[-0.1108862351028,-0.1751096301458],[-0.1751096301458,-0.24404198584548],[-0.24404198584548,-0.31666666666667],[-0.31666666666667,-0.39185683486165],[-0.39185683486165,-0.4683914244512],[-0.4683914244512,-0.54497287201676],[-0.54497287201676,-0.62024636235413],[-0.62024636235413,-0.69282032302755],[-0.69282032302755,-0.76128788136883],[-0.76128788136883,-0.82424898078913],[-0.82424898078913,-0.88033284066043],[-0.88033284066043,-0.92822043567706],[-0.92822043567706,-0.96666666666667],[-0.96666666666667,-0.99452189536827],[-0.99452189536827,-1.0107525207583],[-1.0107525207583,-1.0144602840482],[-1.0144602840482,-1.0049000034069],[-1.0049000034069,-0.98149545762236],[-0.98149545762236,-0.94385316010411],[-0.94385316010411,-0.89177379057287],[-0.89177379057287,-0.82526108117593],[-0.82526108117593,-0.74452798623713],[-0.74452798623713,-0.65],[-0.65,-0.54231552410107],[-0.54231552410107,-0.42232322564576],[-0.42232322564576,-0.29107636714486],[-0.29107636714486,-0.14982413068364],[-0.14982413068364,-2.6941339784092e-016],[-2.6941339784092e-016,0.15679269490148],[0.15679269490148,0.31879792592056],[0.31879792592056,0.48412662452075],[0.48412662452075,0.65077862892128],[0.65077862892128,0.81666666666667],[0.81666666666667,0.97964208715412],[0.97964208715412,1.1375220308101],[1.1375220308101,1.2881176974942],[1.2881176974942,1.4292633567291],[1.4292633567291,1.558845726812],[1.558845726812,1.6748333390114],[1.6748333390114,1.7753054970843],[1.7753054970843,1.8584804413942],[1.8584804413942,1.9227423310453],[1.9227423310453,1.9666666666667],[1.9666666666667,1.9890437907365],[1.9890437907365,1.9889001214921],[1.9889001214921,1.9655168003433],[1.9655168003433,1.9184454610495],[1.9184454610495,1.8475208614068],[1.8475208614068,1.7528701544791],[1.7528701544791,1.6349186160503],[1.6349186160503,1.4943916875348],[1.4943916875348,1.3323132385296],[1.3323132385296,1.15],[1.15,0.94905216717687],[0.94905216717687,0.73134022002071],[0.73134022002071,0.49898805796262],[0.49898805796262,0.25435259395129],[0.25435259395129,7.5517391819047e-016],[7.5517391819047e-016,-0.26132115816913],[-0.26132115816913,-0.52670961673832],[-0.52670961673832,-0.7931436188957],[-0.7931436188957,-1.0575152719971],[-1.0575152719971,-1.3166666666667],[-1.3166666666667,-1.5674273394466],[-1.5674273394466,-1.8066526371689],[-1.8066526371689,-2.0312625229715],[-2.0312625229715,-2.238280351104],[-2.238280351104,-2.4248711305964],[-2.4248711305964,-2.588378796654],[-2.588378796654,-2.7263620133794],[-2.7263620133794,-2.836628042128],[-2.836628042128,-2.9172642264136],[-2.9172642264136,-2.9666666666667],[-2.9666666666667,-2.9835656861048],[-2.9835656861048,-2.9670477222259],[-2.9670477222259,-2.9165733166385],[-2.9165733166385,-2.8319909186921],[-2.8319909186921,-2.7135462651912],[-2.7135462651912,-2.561887148854],[-2.561887148854,-2.3780634415277],[-2.3780634415277,-2.1635222938936],[-2.1635222938936,-1.9200984908221],[-1.9200984908221,-1.65],[-1.65,-1.3557888102527],[-1.3557888102527,-1.0403572143957],[-1.0403572143957,-0.70689974878038],[-0.70689974878038,-0.35888105721895],[-0.35888105721895,-1.4858557093045e-015],[-1.4858557093045e-015,0.36584962143679],[0.36584962143679,0.73462130755608],[0.73462130755608,1.1021606132706],[1.1021606132706,1.4642519150729],[1.4642519150729,1.8166666666667],[1.8166666666667,2.1552125917391],[2.1552125917391,2.4757832435278],[2.4757832435278,2.7744073484489],[2.7744073484489,3.047297345479],[3.047297345479,3.2908965343809],[3.2908965343809,3.5019242542966],[3.5019242542966,3.6774185296746],[3.6774185296746,3.8147756428618],[3.8147756428618,3.9117861217819],[3.9117861217819,3.9666666666667],[3.9666666666667,3.9780875814731],[3.9780875814731,3.9451953229597],[3.9451953229597,3.8676298329336],[3.8676298329336,3.7455363763347],[3.7455363763347,3.5795716689757],[3.5795716689757,3.3709041432289],[3.3709041432289,3.1212082670051],[3.1212082670051,2.8326529002525],[2.8326529002525,2.5078837431146],[2.5078837431146,2.15],[2.15,1.7625254533285],[1.7625254533285,1.3493742087706],[1.3493742087706,0.91481143959814],[0.91481143959814,0.46340952048659],[0.46340952048659,2.461458771183e-015],[2.461458771183e-015,-0.47037808470444],[-0.47037808470444,-0.94253299837385],[-0.94253299837385,-1.4111776076456],[-1.4111776076456,-1.8709885581487],[-1.8709885581487,-2.3166666666667],[-2.3166666666667,-2.7429978440315],[-2.7429978440315,-3.1449138498866],[-3.1449138498866,-3.5175521739263],[-3.5175521739263,-3.8563143398539],[-3.8563143398539,-4.1569219381653],[-4.1569219381653,-4.4154697119392],[-4.4154697119392,-4.6284750459697],[-4.6284750459697,-4.7929232435956],[-4.7929232435956,-4.9063080171501],[-4.9063080171501,-4.9666666666667],[-4.9666666666667,-4.9726094768414],[-4.9726094768414,-4.9233429236935],[-4.9233429236935,-4.8186863492288],[-4.8186863492288,-4.6590818339773],[-4.6590818339773,-4.4455970727601],[-4.4455970727601,-4.1799211376039],[-4.1799211376039,-3.8643530924825],[-3.8643530924825,-3.5017835066114],[-3.5017835066114,-3.095668995407],[-3.095668995407,-2.65],[-2.65,-2.1692620964043],[-2.1692620964043,-1.6583912031456],[-1.6583912031456,-1.1227231304159],[-1.1227231304159,-0.56793798375425],[-0.56793798375425,6.0287676182288e-015],[6.0287676182288e-015,0.57490654797208],[0.57490654797208,1.1504446891916],[1.1504446891916,1.7201946020205],[1.7201946020205,2.2777252012245],[2.2777252012245,2.8166666666667],[2.8166666666667,3.330783096324],[3.330783096324,3.8140444562455],[3.8140444562455,4.2606969994037],[4.2606969994037,4.6653313342289],[4.6653313342289,5.0229473419497],[5.0229473419497,5.3290151695818],[5.3290151695818,5.5795315622649],[5.5795315622649,5.7710708443295],[5.7710708443295,5.9008299125184],[5.9008299125184,5.9666666666667],[5.9666666666667,5.9671313722096],[5.9671313722096,5.9014905244273],[5.9014905244273,5.7697428655239],[5.7697428655239,5.5726272916199],[5.5726272916199,5.3116224765446],[5.3116224765446,4.9889381319788],[4.9889381319788,4.6074979179598],[4.6074979179598,4.1709141129702],[4.1709141129702,3.6834542476995],[3.6834542476995,3.15],[3.15,2.5759987394801],[2.5759987394801,1.9674081975205],[1.9674081975205,1.3306348212337],[1.3306348212337,0.6724664470219],[0.6724664470219,-6.3396788542216e-015],[-6.3396788542216e-015,-0.67943501123973],[-0.67943501123973,-1.3583563800094],[-1.3583563800094,-2.0292115963955],[-2.0292115963955,-2.6844618443003],[-2.6844618443003,-3.3166666666667],[-3.3166666666667,-3.9185683486165],[-3.9185683486165,-4.4831750626043],[-4.4831750626043,-5.0038418248811],[-5.0038418248811,-5.4743483286038],[-5.4743483286038,-5.8889727457342],[-5.8889727457342,-6.2425606272244],[-6.2425606272244,-6.5305880785601],[-6.5305880785601,-6.7492184450633],[-6.7492184450633,-6.8953518078867],[-6.8953518078867,-6.9666666666667],[-6.9666666666667,-6.9616532675779],[-6.9616532675779,-6.8796381251611],[-6.8796381251611,-6.7207993818191],[-6.7207993818191,-6.4861727492625],[-6.4861727492625,-6.177647880329],[-6.177647880329,-5.7979551263538],[-5.7979551263538,-5.3506427434372],[-5.3506427434372,-4.8400447193291],[-4.8400447193291,-4.271239499992],[-4.271239499992,-3.65],[-3.65,-2.9827353825559],[-2.9827353825559,-2.2764251918955],[-2.2764251918955,-1.5385465120514],[-1.5385465120514,-0.77699491028956],[-0.77699491028956,6.4056688194499e-015],[6.4056688194499e-015,0.78396347450739],[0.78396347450739,1.5662680708271],[1.5662680708271,2.3382285907704],[2.3382285907704,3.0911984873761],[3.0911984873761,3.8166666666667],[3.8166666666667,4.506353600909],[4.506353600909,5.1523056689632],[5.1523056689632,5.7469866503585],[5.7469866503585,6.2833653229788],[6.2833653229788,6.7549981495186],[6.7549981495186,7.156106084867],[7.156106084867,7.4816445948552],[7.4816445948552,7.7273660457971],[7.7273660457971,7.889873703255],[7.889873703255,7.9666666666667],[7.9666666666667,7.9561751629462],[7.9561751629462,7.8577857258949],[7.8577857258949,7.6718558981142],[7.6718558981142,7.3997182069051],[7.3997182069051,7.0436732841134],[7.0436732841134,6.6069721207287],[6.6069721207287,6.0937875689146],[6.0937875689146,5.5091753256879],[5.5091753256879,4.8590247522844],[4.8590247522844,4.15],[4.15,3.3894720256317],[3.3894720256317,2.5854421862704],[2.5854421862704,1.7464582028692],[1.7464582028692,0.88152337355721],[0.88152337355721,-6.2267375139137e-015],[-6.2267375139137e-015,-0.88849193777507],[-0.88849193777507,-1.7741797616449],[-1.7741797616449,-2.6472455851454],[-2.6472455851454,-3.4979351304519],[-3.4979351304519,-4.3166666666667],[-4.3166666666667,-5.0941388532014],[-5.0941388532014,-5.8214362753221],[-5.8214362753221,-6.4901314758359],[-6.4901314758359,-7.0923823173537],[-7.0923823173537,-7.6210235533031],[-7.6210235533031,-8.0696515425096],[-8.0696515425096,-8.4327011111504],[-8.4327011111504,-8.7055136465309],[-8.7055136465309,-8.8843955986232],[-8.8843955986232,-8.9666666666667],[-8.9666666666667,-8.9506970583145],[-8.9506970583145,-8.8359333266287],[-8.8359333266287,-8.6229124144094],[-8.6229124144094,-8.3132636645477],[-8.3132636645477,-7.9096986878979],[-7.9096986878979,-7.4159891151037],[-7.4159891151037,-6.836932394392],[-6.836932394392,-6.1783059320468],[-6.1783059320468,-5.4468100045769],[-5.4468100045769,-4.65],[-4.65,-3.7962086687075],[-3.7962086687075,-2.8944591806454],[-2.8944591806454,-1.9543698936869],[-1.9543698936869,-0.98605183682486],[-0.98605183682486,5.8028849376131e-015],[5.8028849376131e-015,0.99302040104272],[0.99302040104272,1.9820914524626],[1.9820914524626,2.9562625795203],[2.9562625795203,3.9046717735277],[3.9046717735277,4.8166666666667],[4.8166666666667,5.6819241054939],[5.6819241054939,6.4905668816809],[6.4905668816809,7.2332763013133],[7.2332763013133,7.9013993117286],[7.9013993117286,8.4870489570875],[8.4870489570875,8.9831970001522],[8.9831970001522,9.3837576274455],[9.3837576274455,9.6836612472647],[9.6836612472647,9.8789174939915],[9.8789174939915,9.9666666666667],[9.9666666666667,9.9452189536827],[9.9452189536827,9.8140809273625],[9.8140809273625,9.5739689307045],[9.5739689307045,9.2268091221903],[9.2268091221903,8.7757240916823],[8.7757240916823,8.2250061094786],[8.2250061094786,7.5800772198694],[7.5800772198694,6.8474365384057],[6.8474365384057,6.0345952568694],[6.0345952568694,5.15],[5.15,4.2029453117833],[4.2029453117833,3.2034761750203],[3.2034761750203,2.1622815845047],[2.1622815845047,1.0905803000925],[1.0905803000925,-5.134111090548e-015],[-5.134111090548e-015,-1.0975488643104],[-1.0975488643104,-2.1900031432804],[-2.1900031432804,-3.2652795738953],[-3.2652795738953,-4.3114084166035],[-4.3114084166035,-5.3166666666666],[-5.3166666666666,-6.2697093577864],[-6.2697093577864,-7.1596974880398],[-7.1596974880398,-7.9764211267907],[-7.9764211267907,-8.7104163061036],[-8.7104163061036,-9.3530743608719],[-9.3530743608719,-9.8967424577948],[-9.8967424577948,-10.334814143741],[-10.334814143741,-10.661808847998],[-10.661808847998,-10.87343938936],[-10.87343938936,-10.966666666667],[-10.966666666667,-10.939740849051],[-10.939740849051,-10.792228528096],[-10.792228528096,-10.525025447],[-10.525025447,-10.140354579833],[-10.140354579833,-9.6417494954668],[-9.6417494954668,-9.0340231038536],[-9.0340231038536,-8.3232220453468],[-8.3232220453468,-7.5165671447645],[-7.5165671447645,-6.6223805091619],[-6.6223805091619,-5.65],[-5.65,-4.6096819548591],[-4.6096819548591,-3.5124931693952],[-3.5124931693952,-2.3701932753224],[-2.3701932753224,-1.1951087633602],[-1.1951087633602,-3.6517367544194e-014],[-3.6517367544194e-014,1.202077327578],[1.202077327578,2.3979148340981],[2.3979148340981,3.5742965682702],[3.5742965682702,4.7181450596793],[4.7181450596793,5.8166666666667],[5.8166666666667,6.8574946100789],[6.8574946100789,7.8288280943986],[7.8288280943986,8.7195659522681],[8.7195659522681,9.5194333004786],[9.5194333004786,10.219099764656],[10.219099764656,10.810287915437],[10.810287915437,11.285870660036],[11.285870660036,11.639956448732],[11.639956448732,11.867961284728],[11.867961284728,11.966666666667],[11.966666666667,11.934262744419],[11.934262744419,11.77037612883],[11.77037612883,11.476081963295],[11.476081963295,11.053900037475],[11.053900037475,10.507774899251],[10.507774899251,9.8430400982285],[9.8430400982285,9.0663668708242],[9.0663668708242,8.1856977511234],[8.1856977511234,7.2101657614544],[7.2101657614544,6.15],[6.15,5.0164185979349],[5.0164185979349,3.8215101637702],[3.8215101637702,2.5781049661402],[2.5781049661402,1.2996372266278],[1.2996372266278,-3.0617995841244e-015],[-3.0617995841244e-015,-1.3066057908457],[-1.3066057908457,-2.6058265249159],[-2.6058265249159,-3.8833135626452],[-3.8833135626452,-5.1248817027551],[-5.1248817027551,-6.3166666666666],[-6.3166666666666,-7.4452798623713],[-7.4452798623713,-8.4979587007575],[-8.4979587007575,-9.4627107777455],[-9.4627107777455,-10.328450294853],[-10.328450294853,-11.085125168441],[-11.085125168441,-11.72383337308],[-11.72383337308,-12.236927176331],[-12.236927176331,-12.618104049466],[-12.618104049466,-12.862483180096],[-12.862483180096,-12.966666666667],[-12.966666666667,-12.928784639788],[-12.928784639788,-12.748523729564],[-12.748523729564,-12.42713847959],[-12.42713847959,-11.967445495118],[-11.967445495118,-11.373800303036],[-11.373800303036,-10.652057092603],[-10.652057092603,-9.8095116963016],[-9.8095116963016,-8.8548283574822],[-8.8548283574822,-7.7979510137468],[-7.7979510137468,-6.65],[-6.65,-5.4231552410107],[-5.4231552410107,-4.1305271581451],[-4.1305271581451,-2.7860166569579],[-2.7860166569579,-1.4041656898955],[-1.4041656898955,-4.6184948949748e-014],[-4.6184948949748e-014,1.4111342541133],[1.4111342541133,2.8137382157336],[2.8137382157336,4.1923305570201],[4.1923305570201,5.5316183458309],[5.5316183458309,6.8166666666667],[6.8166666666667,8.0330651146638],[8.0330651146638,9.1670893071164],[9.1670893071164,10.205855603223],[10.205855603223,11.137467289228],[11.137467289228,11.951150572225],[11.951150572225,12.637378830723],[12.637378830723,13.187983692626],[13.187983692626,13.5962516502],[13.5962516502,13.857005075465],[13.857005075465,13.966666666667],[13.966666666667,13.923306535156],[13.923306535156,13.726671330298],[13.726671330298,13.378194995885],[13.378194995885,12.880990952761],[12.880990952761,12.23982570682],[12.23982570682,11.461074086978],[11.461074086978,10.552656521779],[10.552656521779,9.5239589638411],[9.5239589638411,8.3857362660393],[8.3857362660393,7.15],[7.15,5.8298918840865],[5.8298918840865,4.4395441525201],[4.4395441525201,2.9939283477758],[2.9939283477758,1.5086941531631],[1.5086941531631,-9.8029946428898e-018],[-9.8029946428898e-018,-1.515662717381],[-1.515662717381,-3.0216499065515],[-3.0216499065515,-4.5013475513951],[-4.5013475513951,-5.9383549889067],[-5.9383549889067,-7.3166666666666],[-7.3166666666666,-8.6208503669562],[-8.6208503669562,-9.8362199134752],[-9.8362199134752,-10.9490004287],[-10.9490004287,-11.946484283603],[-11.946484283603,-12.81717597601],[-12.81717597601,-13.550924288365],[-13.550924288365,-14.139040208921],[-14.139040208921,-14.574399250934],[-14.574399250934,-14.851526970833],[-14.851526970833,-14.966666666667],[-14.966666666667,-14.917828430524],[-14.917828430524,-14.704818931032],[-14.704818931032,-14.32925151218],[-14.32925151218,-13.794536410403],[-13.794536410403,-13.105851110605],[-13.105851110605,-12.270091081353],[-12.270091081353,-11.295801347256],[-11.295801347256,-10.1930895702],[-10.1930895702,-8.9735215183318],[-8.9735215183318,-7.65],[-7.65,-6.2366285271623],[-6.2366285271623,-4.748561146895],[-4.748561146895,-3.2018400385935],[-3.2018400385935,-1.6132226164309],[-1.6132226164309,-5.6832215438359e-014],[-5.6832215438359e-014,1.6201911806486],[1.6201911806486,3.2295615973692],[3.2295615973692,4.81036454577],[4.81036454577,6.3450916319825],[6.3450916319825,7.8166666666667],[7.8166666666667,9.2086356192487],[9.2086356192487,10.505350519834],[10.505350519834,11.692145254178],[11.692145254178,12.755501277978],[12.755501277978,13.683201379794],[13.683201379794,14.464469746008],[14.464469746008,15.090096725216],[15.090096725216,15.552546851668],[15.552546851668,15.846048866201],[15.846048866201,15.966666666667],[15.966666666667,15.912350325892],[15.912350325892,15.682966531765],[15.682966531765,15.280308028475],[15.280308028475,14.708081868046],[14.708081868046,13.971876514389],[13.971876514389,13.079108075728],[13.079108075728,12.038946172734],[12.038946172734,10.862220176559],[10.862220176559,9.5613067706243],[9.5613067706243,8.15],[8.15,6.6433651702381],[6.6433651702381,5.05757814127],[5.05757814127,3.4097517294113],[3.4097517294113,1.7177510796985],[1.7177510796985,4.0218786778965e-015],[4.0218786778965e-015,-1.7247196439163],[-1.7247196439163,-3.437473288187],[-3.437473288187,-5.119381540145],[-5.119381540145,-6.7518282750583],[-6.7518282750583,-8.3166666666666],[-8.3166666666666,-9.7964208715412],[-9.7964208715412,-11.174481126193],[-11.174481126193,-12.435290079655],[-12.435290079655,-13.564518272353],[-13.564518272353,-14.549226783579],[-14.549226783579,-15.37801520365],[-15.37801520365,-16.041153241512],[-16.041153241512,-16.530694452401],[-16.530694452401,-16.840570761569],[-16.840570761569,-16.966666666667],[-16.966666666667,-16.906872221261],[-16.906872221261,-16.661114132499],[-16.661114132499,-16.231364544771],[-16.231364544771,-15.621627325688],[-15.621627325688,-14.837901918173],[-14.837901918173,-13.888125070103],[-13.888125070103,-12.782090998211],[-12.782090998211,-11.531350782918],[-11.531350782918,-10.149092022917],[-10.149092022917,-8.65],[-8.65,-7.0501018133139],[-7.0501018133139,-5.3665951356449],[-5.3665951356449,-3.617663420229],[-3.617663420229,-1.822279542966],[-1.822279542966,-6.8459167010028e-014],[-6.8459167010028e-014,1.8292481071839],[1.8292481071839,3.6453849790047],[3.6453849790047,5.4283985345199],[5.4283985345199,7.1585649181341],[7.1585649181341,8.8166666666667],[8.8166666666667,10.384206123834],[10.384206123834,11.843611732552],[11.843611732552,13.178434905132],[13.178434905132,14.373535266728],[14.373535266728,15.415252187363],[15.415252187363,16.291560661293],[16.291560661293,16.992209757807],[16.992209757807,17.508842053135],[17.508842053135,17.835092656938],[17.835092656938,17.966666666667],[17.966666666667,17.901394116629],[17.901394116629,17.639261733233],[17.639261733233,17.182421061066],[17.182421061066,16.535172783331],[16.535172783331,15.703927321958],[15.703927321958,14.697142064478],[14.697142064478,13.525235823689],[13.525235823689,12.200481389276],[12.200481389276,10.736877275209],[10.736877275209,9.1500000000001],[9.1500000000001,7.4568384563897],[7.4568384563897,5.6756121300199],[5.6756121300199,3.8255751110468],[3.8255751110468,1.9268080062338],[1.9268080062338,9.0332454334939e-015],[9.0332454334939e-015,-1.9337765704516],[-1.9337765704516,-3.8532966698225],[-3.8532966698225,-5.7374155288949],[-5.7374155288949,-7.5653015612099],[-7.5653015612099,-9.3166666666667],[-9.3166666666667,-10.971991376126],[-10.971991376126,-12.512742338911],[-12.512742338911,-13.92157973061],[-13.92157973061,-15.182552261103],[-15.182552261103,-16.281277591147],[-16.281277591147,-17.205106118936],[-17.205106118936,-17.943266274102],[-17.943266274102,-18.486989653869],[-18.486989653869,-18.829614552306],[-18.829614552306,-18.966666666667],[-18.966666666667,-18.895916011997],[-18.895916011997,-18.617409333967],[-18.617409333967,-18.133477577361],[-18.133477577361,-17.448718240974],[-17.448718240974,-16.569952725742],[-16.569952725742,-15.506159058853],[-15.506159058853,-14.268380649166],[-14.268380649166,-12.869611995635],[-12.869611995635,-11.324662527502],[-11.324662527502,-9.65],[-9.65,-7.8635750994655],[-7.8635750994655,-5.9846291243948],[-5.9846291243948,-4.0334868018645],[-4.0334868018645,-2.0313364695014],[-2.0313364695014,-8.1065803664756e-014],[-8.1065803664756e-014,2.0383050337192],[2.0383050337192,4.0612083606402],[4.0612083606402,6.0464325232698],[6.0464325232698,7.9720382042857],[7.9720382042857,9.8166666666666],[9.8166666666666,11.559776628419],[11.559776628419,13.18187294527],[13.18187294527,14.664724556087],[14.664724556087,15.991569255478],[15.991569255478,17.147302994932],[17.147302994932,18.118651576578],[18.118651576578,18.894322790397],[18.894322790397,19.465137254603],[19.465137254603,19.824136447674],[19.824136447674,19.966666666667],[19.966666666667,19.890437907365],[-5.1351826436952e-014,20.884959802734],[-2.1881291644029,20.966666666667],[-4.3453543380912,20.818658343043],[-6.4481546159573,20.443284855337],[-8.4736800640791,19.845379306692],[-10.4,19.032197034221],[-12.20634040594,18.013328398716],[-13.873307905174,16.800586249853],[-15.383097887382,15.407869381565],[-16.719684550416,13.851003551628],[-17.868990831419,12.147561880711],[-18.819036427438,10.316666666667],[-19.560062351804,8.3787748473615],[-20.084630735067,6.3554495176447],[-20.38769885505,4.2691200514579],[-20.466666666667,2.1428334969868],[-20.321397395358,-8.523014289411e-014],[-19.95421105497,-2.135864932769],[-19.369851048545,-4.2413984926823],[-18.5754243054,-6.2936461187697],[-17.580315696824,-8.2703117425413],[-16.396077752666,-10.15],[-15.036296968826,-11.912447779794],[-13.516438248449,-13.538742601994],[-11.853669254565,-15.011525474643],[-10.066666666667,-16.315176053228],[-8.1754065258235,-17.435978129527],[-6.2009410204572,-18.362263698616],[-4.1651642060492,-19.084534093656],[-2.0905692653531,-19.595556934701],[-2.4478366743875e-014,-19.890437907365],[2.0836007011352,-19.966666666667],[4.1374426472734,-19.824136447674],[6.1391376215823,-19.465137254603],[8.0669434210034,-18.894322790397],[9.9,-18.118651576578],[11.618555153648,-17.147302994932],[13.204177298815,-15.991569255478],[14.639953061905,-14.664724556087],[15.910667556041,-13.181872945269],[17.002965427634,-11.559776628419],[17.905490969795,-9.8166666666667],[18.609005835508,-7.9720382042857],[19.106483134334,-6.0464325232698],[19.393176959681,-4.0612083606402],[19.466666666667,-2.0383050337192],[19.32687549999,9.522410348665e-015],[18.976063454236,2.0313364695014],[18.418794532249,4.0334868018646],[17.661878847757,5.9846291243949],[16.71429029304,7.8635750994655],[15.587060758291,9.6500000000001],[14.293152143349,11.324662527502],[12.84730764209,12.869611995635],[11.265884002272,14.268380649166],[9.5666666666667,15.506159058853],[7.7686698827478,16.569952725742],[5.8919240260823,17.448718240974],[3.9572525152313,18.133477577361],[1.9860408020854,18.617409333967],[-4.1808060919496e-014,18.895916011997],[-1.9790722378676,18.966666666667],[-3.9295309564557,18.829614552306],[-5.8301206272074,18.486989653869],[-7.6602067779275,17.943266274102],[-9.4,17.205106118936],[-11.030769901355,16.281277591147],[-12.535046692456,15.182552261103],[-13.896808236427,13.92157973061],[-15.101650561666,12.512742338911],[-16.13694002385,10.971991376126],[-16.991945512152,9.3166666666667],[-17.657949319213,7.5653015612099],[-18.1283355336,5.7374155288948],[-18.398655064313,3.8532966698224],[-18.466666666667,1.9337765704515],[-18.332353604622,-7.2378584968618e-014],[-17.997915853502,-1.9268080062337],[-17.467738015954,-3.8255751110467],[-16.748333390114,-5.6756121300198],[-15.848264889255,-7.4568384563897],[-14.778043763916,-9.15],[-13.550007317871,-10.736877275209],[-12.178177035731,-12.200481389277],[-10.67809874998,-13.525235823689],[-9.0666666666666,-14.697142064478],[-7.3619332396719,-15.703927321958],[-5.5829070317073,-16.535172783331],[-3.7493408244136,-17.182421061066],[-1.8815123388178,-17.639261733233],[-2.6426862362201e-014,-17.901394116629],[1.8745437745999,-17.966666666667],[3.7216192656379,-17.835092656938],[5.5211036328324,-17.508842053135],[7.2534701348518,-16.992209757807],[8.9,-16.291560661293],[10.442984649063,-15.415252187363],[11.865916086097,-14.373535266728],[13.15366341095,-13.178434905132],[14.292633567291,-11.843611732552],[15.270914620066,-10.384206123834],[16.07840005451,-8.8166666666666],[16.706892802918,-7.1585649181341],[17.150187932866,-5.4283985345199],[17.404133168945,-3.6453849790047],[17.466666666667,-1.8292481071839],[17.337831709254,4.2661223223032e-015],[17.019768252768,1.8222795429661],[16.516681499659,3.617663420229],[15.834787932472,5.366595135645],[14.982239485471,7.0501018133139],[13.969026769541,8.65],[12.806862492394,10.149092022917],[11.509046429372,11.531350782918],[10.090313497687,12.782090998211],[8.5666666666667,13.888125070103],[6.9551965965962,14.837901918173],[5.2738900373324,15.621627325688],[3.5414291335958,16.231364544771],[1.7769838755501,16.661114132499],[-3.3243980485098e-014,16.906872221261],[-1.7700153113323,16.966666666667],[-3.5137075748202,16.840570761569],[-5.2120866384575,16.530694452401],[-6.846733491776,16.041153241512],[-8.4,15.37801520365],[-9.8551993967704,14.549226783579],[-11.196785479738,13.564518272353],[-12.410518585472,12.435290079655],[-13.483616572916,11.174481126193],[-14.404889216281,9.7964208715412],[-15.164854596867,8.3166666666667],[-15.755836286623,6.7518282750583],[-16.172040332132,5.1193815401449],[-16.409611273577,3.4374732881869],[-16.466666666667,1.7247196439162],[-16.343309813885,-6.0506712126184e-014],[-16.041620652034,-1.7177510796985],[-15.565624983364,-3.4097517294112],[-14.921242474829,-5.0575781412699],[-14.116214081686,-6.6433651702381],[-13.160009775166,-8.15],[-12.063717666916,-9.5613067706242],[-10.839915823013,-10.862220176559],[-9.502528245395,-12.038946172734],[-8.0666666666666,-13.079108075728],[-6.5484599535203,-13.971876514389],[-4.9648730429574,-14.708081868046],[-3.333517442778,-15.280308028475],[-1.6724554122825,-15.682966531765],[-2.7395672897469e-014,-15.912350325892],[1.6654868480646,-15.966666666667],[3.3057958840024,-15.846048866201],[4.9030696440825,-15.552546851668],[6.4399968487002,-15.090096725216],[7.9,-14.464469746008],[9.267414144478,-13.683201379794],[10.527654873379,-12.755501277978],[11.667373759995,-11.692145254178],[12.674599578541,-10.505350519834],[13.538863812497,-9.2086356192487],[14.251309139225,-7.8166666666666],[14.804779770328,-6.3450916319825],[15.193892731398,-4.81036454577],[15.415089378208,-3.2295615973692],[15.466666666667,-1.6201911806486],[15.348787918517,-1.0480621000693e-017],[15.063473051301,1.6132226164308],[14.614568467069,3.2018400385935],[14.007697017187,4.7485611468951],[13.250188677902,6.2366285271623],[12.350992780791,7.65],[11.320572841439,8.9735215183318],[10.170785216655,10.1930895702],[8.9147429931025,11.295801347256],[7.5666666666667,12.270091081353],[6.1417233104446,13.105851110604],[4.6558560485825,13.794536410403],[3.1256057519603,14.32925151218],[1.5679269490148,14.704818931032],[-2.5659585133758e-014,14.917828430524],[-1.560958384797,14.966666666667],[-3.0978841931847,14.851526970833],[-4.5940526497076,14.574399250934],[-6.0332602056244,14.139040208921],[-7.4,13.550924288365],[-8.6796288921855,12.81717597601],[-9.8585242670205,11.946484283603],[-10.924228934518,10.9490004287],[-11.865582584166,9.8362199134752],[-12.672838408712,8.6208503669563],[-13.337763681582,7.3166666666667],[-13.853723254033,5.9383549889067],[-14.215745130665,4.501347551395],[-14.42056748284,3.0216499065514],[-14.466666666667,1.5156627173809],[-14.354266023149,-4.9614524366808e-014],[-14.085325450567,-1.5086941531632],[-13.663511950774,-2.9939283477757],[-13.094151559544,-4.4395441525201],[-12.384163274117,-5.8298918840865],[-11.541975786416,-7.15],[-10.577428015962,-8.3857362660393],[-9.5016546102958,-9.5239589638411],[-8.32695774081,-10.552656521779],[-7.0666666666666,-11.461074086978],[-5.7349866673687,-12.23982570682],[-4.3468390542075,-12.880990952761],[-2.9176940611425,-13.378194995885],[-1.4633984857472,-13.726671330298],[-2.7384798349679e-014,-13.923306535156],[1.4564299215293,-13.966666666667],[2.8899725023668,-13.857005075465],[4.2850356553326,-13.5962516502],[5.6265235625486,-13.187983692626],[6.9,-12.637378830723],[8.0918436398931,-11.951150572225],[9.1893936606617,-11.137467289228],[10.18108410904,-10.205855603223],[11.056565589791,-9.1670893071163],[11.806813004928,-8.0330651146638],[12.424218223939,-6.8166666666666],[12.902666737738,-5.5316183458309],[13.237597529931,-4.1923305570201],[13.426045587472,-2.8137382157337],[13.466666666667,-1.4111342541133],[13.35974412778,-3.3073984812467e-015],[13.107177849833,1.4041656898955],[12.712455434479,2.786016656958],[12.180606101901,4.1305271581452],[11.518137870333,5.4231552410107],[10.732958792041,6.65],[9.8342831904841,7.7979510137468],[8.832524003937,8.8548283574823],[7.7391724885176,9.8095116963016],[6.5666666666667,10.652057092603],[5.328250024293,11.373800303036],[4.0378220598327,11.967445495118],[2.7097823703248,12.42713847959],[1.3588700224795,12.748523729564],[-1.9054874865476e-014,12.928784639788],[-1.3519014582617,12.966666666667],[-2.6820608115491,12.862483180096],[-3.9760186609577,12.618104049466],[-5.2197869194728,12.236927176331],[-6.4,11.72383337308],[-7.5040583876006,11.085125168441],[-8.5202630543028,10.328450294854],[-9.4379392835629,9.4627107777455],[-10.247548595416,8.4979587007575],[-10.940787601143,7.4452798623713],[-11.510672766297,6.3166666666667],[-11.951610221442,5.1248817027551],[-12.259449929197,3.8833135626452],[-12.431523692103,2.6058265249159],[-12.466666666667,1.3066057908456],[-12.365222232412,-3.970202169049e-014],[-12.129030249099,-1.2996372266279],[-11.761398918183,-2.5781049661402],[-11.267060644259,-3.8215101637702],[-10.652112466549,-5.0164185979349],[-9.923941797666,-6.15],[-9.0911383650068,-7.2101657614543],[-8.1633933975781,-8.1856977511234],[-7.1513872362251,-9.0663668708242],[-6.0666666666666,-9.8430400982285],[-4.9215133812172,-10.507774899251],[-3.7288050654577,-11.053900037475],[-2.501870679507,-11.476081963295],[-1.2543415592119,-11.77037612883],[-2.6394238718831e-014,-11.934262744419],[1.247372994994,-11.966666666667],[2.4741491207313,-11.867961284728],[3.6670016665827,-11.639956448732],[4.813050276397,-11.285870660036],[5.9,-10.810287915437],[6.9162731353081,-10.219099764656],[7.851132447944,-9.5194333004785],[8.6947944580855,-8.7195659522681],[9.4385316010411,-7.8288280943986],[10.074762197359,-6.8574946100788],[10.597127308654,-5.8166666666666],[11.000553705147,-4.7181450596793],[11.281302328463,-3.5742965682702],[11.437001796735,-2.3979148340982],[11.466666666667,-1.202077327578],[11.370700337044,-5.6246312584348e-015],[11.150882648365,1.1951087633602],[10.810342401888,2.3701932753225],[10.353515186616,3.5124931693952],[9.7860870627641,4.6096819548591],[9.1149248032911,5.65],[8.3479935395294,6.6223805091619],[7.4942627912192,7.5165671447645],[6.5636019839326,8.3232220453468],[5.5666666666666,9.0340231038536],[4.5147767381414,9.6417494954668],[3.4197880710828,10.140354579833],[2.2939589886893,10.525025447],[1.1498130959442,10.792228528096],[-1.3429849680252e-014,10.939740849051],[-1.1428445317264,10.966666666667],[-2.2662374299136,10.87343938936],[-3.3579846722078,10.661808847998],[-4.4063136333212,10.334814143741],[-5.4,9.8967424577948],[-6.3284878830156,9.3530743608719],[-7.1820018415851,8.7104163061036],[-7.9516496326081,7.9764211267907],[-8.6295146066661,7.1596974880398],[-9.2087367935745,6.2697093577864],[-9.6835818510116,5.3166666666667],[-10.049497188852,4.3114084166035],[-10.303154727729,3.2652795738953],[-10.442479901367,2.1900031432804],[-10.466666666667,1.0975488643104],[-10.376178441676,6.4158657408821e-015],[-10.172735047632,-1.0905803000925],[-9.8592858855931,-2.1622815845047],[-9.4399697289735,-3.2034761750203],[-8.9200616589797,-4.2029453117833],[-8.3059078089161,-5.15],[-7.604848714052,-6.0345952568694],[-6.8251321848603,-6.8474365384056],[-5.9758167316401,-7.5800772198694],[-5.0666666666667,-8.2250061094786],[-4.1080400950656,-8.7757240916823],[-3.1107710767078,-9.2268091221903],[-2.0860472978715,-9.5739689307045],[-1.0452846326765,-9.8140809273625],[1.0984718993787e-014,-9.9452189536827],[1.0383160684587,-9.9666666666667],[2.0583257390958,-9.8789174939915],[3.0489676778328,-9.6836612472647],[3.9995769902454,-9.3837576274455],[4.9,-8.9831970001522],[5.7407026307232,-8.4870489570875],[6.5128712352262,-7.9013993117286],[7.2085048071307,-7.2332763013133],[7.8204976122912,-6.4905668816809],[8.3427113897901,-5.6819241054939],[8.770036393369,-4.8166666666667],[9.098440672557,-3.9046717735277],[9.3250071269956,-2.9562625795203],[9.4479580059986,-1.9820914524626],[9.4666666666667,-0.99302040104272],[9.3816565463074,-6.962178952565e-015],[9.1945874468978,0.98605183682486],[8.9082293692979,1.9543698936869],[8.5264242713309,2.8944591806454],[8.0540362551953,3.7962086687075],[7.4968908145412,4.65],[6.8617038885746,5.4468100045769],[6.1560015785015,6.1783059320468],[5.3880314793477,6.836932394392],[4.5666666666667,7.4159891151037],[3.7013034519898,7.9096986878979],[2.8017540823329,8.3132636645477],[1.8781356070538,8.6229124144094],[0.94075616940888,8.8359333266287],[-8.7845095780859e-015,8.9506970583145],[-0.93378760519105,8.9666666666667],[-1.8504140482781,8.8843955986232],[-2.7399506834579,8.7055136465309],[-3.5928403471696,8.4327011111504],[-4.4,8.0696515425096],[-5.1529173784307,7.6210235533031],[-5.8437406288674,7.0923823173537],[-6.4653599816533,6.4901314758359],[-7.0114806179162,5.8214362753221],[-7.4766859860057,5.0941388532014],[-7.8564909357264,4.3166666666667],[-8.1473841562618,3.4979351304519],[-8.3468595262618,2.6472455851454],[-8.4534361106303,1.7741797616449],[-8.4666666666667,0.88849193777504],[-8.3871346509391,7.2635708934834e-015],[-8.216439846164,-0.88152337355721],[-7.9571728530028,-1.7464582028692],[-7.6128788136883,-2.5854421862704],[-7.1880108514108,-3.3894720256317],[-6.6878738201662,-4.15],[-6.1185590630972,-4.8590247522844],[-5.4868709721426,-5.5091753256879],[-4.8002462270552,-6.0937875689146],[-4.0666666666667,-6.6069721207287],[-3.294566808914,-7.0436732841134],[-2.4927370879579,-7.3997182069051],[-1.670223916236,-7.6718558981142],[-0.83622770614123,-7.8577857258949],[6.8292214331495e-015,-7.9561751629462],[0.8292591419234,-7.9666666666667],[1.6425023574603,-7.889873703255],[2.4309336890829,-7.7273660457971],[3.1861037040938,-7.4816445948552],[3.9,-7.156106084867],[4.5651321261382,-6.7549981495186],[5.1746100225085,-6.2833653229788],[5.7222151561759,-5.7469866503585],[6.2024636235413,-5.1523056689632],[6.6106605822212,-4.506353600909],[6.9429454780838,-3.8166666666667],[7.1963276399667,-3.0911984873761],[7.368711925528,-2.3382285907704],[7.4589142152621,-1.5662680708271],[7.4666666666667,-0.78396347450739],[7.3926127555708,-7.3200415636373e-015],[7.2382922454302,0.77699491028955],[7.0061163367076,1.5385465120514],[6.6993333560457,2.2764251918955],[6.3219854476264,2.9827353825559],[5.8788568257913,3.65],[5.3754142376198,4.271239499992],[4.8177403657838,4.8400447193291],[4.2124609747627,5.3506427434372],[3.5666666666667,5.7979551263538],[2.8878301658382,6.177647880329],[2.183720093583,6.4861727492625],[1.4623122254182,6.7207993818191],[0.73169924287357,6.8796381251611],[-5.1188545589775e-015,6.9616532675779],[-0.72473067865574,6.9666666666667],[-1.4345906666426,6.8953518078867],[-2.121916694708,6.7492184450633],[-2.779367061018,6.5305880785601],[-3.4,6.2425606272244],[-3.9773468738457,5.8889727457342],[-4.5054794161497,5.4743483286038],[-4.9790703306985,5.0038418248811],[-5.3934466291663,4.4831750626043],[-5.7446351784368,3.9185683486165],[-6.0294000204412,3.3166666666667],[-6.2452711236715,2.6844618443003],[-6.3905643247942,2.0292115963955],[-6.4643923198938,1.3583563800094],[-6.4666666666667,0.67943501123974],[-6.3980908602026,7.1315909630267e-015],[-6.2601446446964,-0.6724664470219],[-6.0550598204125,-1.3306348212337],[-5.7857878984031,-1.9674081975205],[-5.455960043842,-2.5759987394801],[-5.0698398314163,-3.15],[-4.6322694121424,-3.6834542476995],[-4.1486097594249,-4.1709141129702],[-3.6246757224702,-4.6074979179598],[-3.0666666666667,-4.9889381319788],[-2.4810935227624,-5.3116224765446],[-1.874703099208,-5.5726272916199],[-1.2544005346005,-5.7697428655239],[-0.62717077960592,-5.9014905244273],[3.6534089555701e-015,-5.9671313722096],[0.62020221538807,-5.9666666666667],[1.2266789758248,-5.9008299125184],[1.812899700333,-5.7710708443295],[2.3726304179422,-5.5795315622649],[2.9,-5.3290151695818],[3.3895616215533,-5.0229473419497],[3.8363488097908,-4.6653313342289],[4.2359255052211,-4.2606969994037],[4.5844296347914,-3.8140444562455],[4.8786097746523,-3.330783096324],[5.1158545627986,-2.8166666666667],[5.2942146073764,-2.2777252012245],[5.4124167240604,-1.7201946020205],[5.4698704245255,-1.1504446891916],[5.4666666666667,-0.57490654797209],[5.4035689648343,3.012531630403e-015],[5.2819970439626,0.56793798375425],[5.1040033041173,1.1227231304159],[4.8722424407605,1.6583912031456],[4.5899346400575,2.1692620964043],[4.2608228370414,2.65],[3.889124586665,3.095668995407],[3.4794791530661,3.5017835066114],[3.0368904701778,3.8643530924824],[2.5666666666667,4.1799211376039],[2.0743568796866,4.4455970727601],[1.5656861048331,4.6590818339773],[1.0464888437827,4.8186863492288],[0.52264231633827,4.9233429236935],[-2.4328846229271e-015,4.9726094768414],[-0.51567375212043,4.9666666666667],[-1.018767285007,4.9063080171501],[-1.5038827059581,4.7929232435956],[-1.9658937748664,4.6284750459697],[-2.4,4.4154697119392],[-2.8017763692608,4.1569219381653],[-3.1672182034319,3.8563143398539],[-3.4927806797438,3.5175521739263],[-3.7754126404164,3.1449138498866],[-4.0125843708679,2.7429978440315],[-4.202309105156,2.3166666666667],[-4.3431580910812,1.8709885581487],[-4.4342691233266,1.4111776076456],[-4.4753485291572,0.94253299837384],[-4.4666666666667,0.47037808470444],[-4.409047069466,-1.9144679331423e-015],[-4.3038494432287,-0.4634095204866],[-4.1529467878222,-0.91481143959814],[-3.9586969831179,-1.3493742087706],[-3.7239092362731,-1.7625254533285],[-3.4518058426664,-2.15],[-3.1459797611876,-2.5078837431146],[-2.8103485467072,-2.8326529002525],[-2.4491052178853,-3.1212082670051],[-2.0666666666667,-3.3709041432289],[-1.6676202366108,-3.5795716689757],[-1.2566691104581,-3.7455363763347],[-0.83857715296496,-3.8676298329336],[-0.41811385307061,-3.9451953229597],[1.4572815610486e-015,-3.9780875814731],[0.41114528885277,-3.9666666666667],[0.81085559418926,-3.9117861217819],[1.1948657115831,-3.8147756428618],[1.5591571317906,-3.6774185296746],[1.9,-3.5019242542966],[2.2139911169683,-3.2908965343809],[2.4980875970731,-3.047297345479],[2.7496358542664,-2.7744073484489],[2.9663956460415,-2.4757832435278],[3.1465589670835,-2.1552125917391],[3.2887636475134,-1.8166666666667],[3.392101574786,-1.4642519150729],[3.4561215225928,-1.1021606132706],[3.480826633789,-0.73462130755608],[3.4666666666667,-0.36584962143679],[3.4145251740977,1.0613255066461e-015],[3.3257018424949,0.35888105721894],[3.201890271527,0.70689974878038],[3.0451515254753,1.0403572143957],[2.8578838324886,1.3557888102527],[2.6427888482915,1.65],[2.4028349357102,1.9200984908221],[2.1412179403483,2.1635222938936],[1.8613199655928,2.3780634415277],[1.5666666666667,2.561887148854],[1.260883593535,2.7135462651912],[0.94765211608317,2.8319909186921],[0.6306654621472,2.9165733166385],[0.31358538980296,2.9670477222259],[-7.2659976993461e-016,2.9835656861048],[-0.30661682558512,2.9666666666667],[-0.6029439033715,2.9172642264136],[-0.88584871720818,2.836628042128],[-1.1524204887148,2.7263620133794],[-1.4,2.588378796654],[-1.6262058646758,2.4248711305964],[-1.8289569907142,2.238280351104],[-2.006491028789,2.0312625229715],[-2.1573786516665,1.8066526371689],[-2.280533563299,1.5674273394466],[-2.3752181898708,1.3166666666667],[-2.4410450584909,1.0575152719971],[-2.477973921859,0.7931436188957],[-2.4863047384207,0.52670961673832],[-2.4666666666667,0.26132115816913],[-2.4200032787295,-4.5310435091428e-016],[-2.3475542417611,-0.25435259395129],[-2.2508337552319,-0.49898805796262],[-2.1316060678327,-0.73134022002071],[-1.9918584287042,-0.94905216717687],[-1.8337718539165,-1.15],[-1.6596901102328,-1.3323132385296],[-1.4720873339895,-1.4943916875348],[-1.2735347133004,-1.6349186160503],[-1.0666666666667,-1.7528701544791],[-0.85414695045918,-1.8475208614068],[-0.63863512170822,-1.9184454610495],[-0.42275377132944,-1.9655168003433],[-0.20905692653531,-1.9889001214921],[2.4083924958507e-016,-1.9890437907365],[0.20208836231746,-1.9666666666667],[0.39503221255374,-1.9227423310453],[0.57683172283324,-1.8584804413942],[0.74568384563897,-1.7753054970843],[0.9,-1.6748333390114],[1.0384206123834,-1.558845726812],[1.1598263843554,-1.4292633567291],[1.2633462033116,-1.2881176974941],[1.3483616572916,-1.1375220308101],[1.4145081595146,-0.97964208715412],[1.4616727322282,-0.81666666666667],[1.4899885421957,-0.65077862892128],[1.4998263211252,-0.48412662452075],[1.4917828430524,-0.31879792592056],[1.4666666666667,-0.15679269490148],[1.4254813833612,8.9804465946974e-017],[1.3694066410273,0.14982413068364],[1.2997772389367,0.29107636714486],[1.2180606101901,0.42232322564576],[1.1258330249198,0.54231552410107],[1.0247548595416,0.65],[0.91654528475545,0.74452798623713],[0.80295672763063,0.82526108117593],[0.68574946100789,0.89177379057287],[0.56666666666667,0.94385316010411],[0.44741030738338,0.98149545762236],[0.32961812733328,1.0049000034069],[0.21484208051168,1.0144602840482],[0.10452846326765,1.0107525207583]])}
Jrv wrote:
TC42 wrote:Quite honestly, I didn't think anyone on 4chan has that good a use of grammar, spelling, usage, mechanics, ect.
But I've never been there, so I may be wrong.


GTFO newfgt
User avatar
RA2lover
 
Posts: 607
Joined: Mon Aug 31, 2009 8:43 pm
Location: Brazil

Return to Thyme scripting

Who is online

Users browsing this forum: No registered users and 3 guests