Thread: [TEC] SweetScape 010 Editor
View Single Post
Old 02-01-19, 09:21 AM   #43
Jeff-Groves
Village Idiot
 
Jeff-Groves's Avatar
 
Join Date: Sep 2014
Posts: 5,319
Downloads: 130
Uploads: 0


Default

Fixed script above by replacing float with double.

float vt1=-0.00100000000003808065, vt2;
to
double vt1=-0.00100000000003808065, vt2;

and changed the Printf function

Printf( "vt %f %f\n", vt1, vt2);
to
Printf( "vt %lf %lf\n", vt1, vt2);


Will triple check the output then move on to the faces scripting.
Jeff-Groves is offline   Reply With Quote