TP
Torsten Paul
Fri, Nov 11, 2016 9:51 PM
On 11/11/2016 03:44 PM, Marius Kintel wrote:
Not yet, but it will be on the way as soon as we get a chance
to manually kick off a Windows build..
I've build binaries from master (which are totally untested
and available at http://files.openscad.org/snapshots/) but
those are missing compression support for AMF, looks like I
just forgot to update the build script.
As MXE decided to do a full rebuild, it's going to take a
couple of hours before I can follow up on that.
But anyway, please have a look at the Nov 11th binaries,
the latest Customizer updates should be in there.
ciao,
Torsten.
On 11/11/2016 03:44 PM, Marius Kintel wrote:
> Not yet, but it will be on the way as soon as we get a chance
> to manually kick off a Windows build..
>
I've build binaries from master (which are totally untested
and available at http://files.openscad.org/snapshots/) but
those are missing compression support for AMF, looks like I
just forgot to update the build script.
As MXE decided to do a full rebuild, it's going to take a
couple of hours before I can follow up on that.
But anyway, please have a look at the Nov 11th binaries,
the latest Customizer updates should be in there.
ciao,
Torsten.
M
MichaelAtOz
Fri, Nov 11, 2016 11:01 PM
But anyway, please have a look at the Nov 11th binaries,
the latest Customizer updates should be in there.
Thanks. Noting not many of above issues resolved - not complaining, just
saying.
Amarjeet Kapoor wrote
It'd be better to have a blank description take zero
vertical space.
Already listed in the github issue.
This is also already done.
Didn't make it to this snapshot?
I'll only mention new observations below.
Currently, for slider, I used [min:0.1:max] which makes the single click to
the left/right change by 1, from glancing at the code that seems to be by
factor of 10 ATM. I'd suggest where a step size is specified, that amount is
used as the increment, i.e [min:1:max] would step by 1. Where no step is
specified then current behaviour. (??)
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19044.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
tp3 wrote
> But anyway, please have a look at the Nov 11th binaries,
> the latest Customizer updates should be in there.
Thanks. Noting not many of above issues resolved - not complaining, just
saying.
Amarjeet Kapoor wrote
>>> It'd be better to have a blank description take zero
>>> vertical space.
>>>
>> Already listed in the github issue.
>>
>
> This is also already done.
Didn't make it to this snapshot?
---------------------------------------------------------
I'll only mention new observations below.
Currently, for slider, I used [min:0.1:max] which makes the single click to
the left/right change by 1, from glancing at the code that seems to be by
factor of 10 ATM. I'd suggest where a step size is specified, that amount is
used as the increment, i.e [min:1:max] would step by 1. Where no step is
specified then current behaviour. (??)
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19044.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Fri, Nov 11, 2016 11:05 PM
I needed a new insert for my bandsaw, so designed one.
Decided to customize it.
Feel free to use as example if suitable.
// Released to the Public Domain
// Bandsaw insert plate
// TODO: currently assumes gap is always in the centre.
/* [Size in 1/10 mm] Main Tab */
// Width i.e right angle to blade
X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
// Depth i.e. parallel to blade
Y=380; // [1:0.1:500]
// Height or thickness
H=21;
// Zero for square corners
Corner_Radius=30;
// Gap not incl. the beveled cut
Gap_X=40; // [1:500]
Gap_Y=288; // [1:0.1:500]
/* [Holes] */
// In 1/10 mm
Hole_Diameter=48; //
// per side
Number_of_Holes=3; // [0:0.1:6]
/* [Options] */
// Bevel the gap for a tilt table
Tilt_Bevel=true;
// Facets in a circle
$fn=16; // [3,4,8,12,16,20,24,28,32]
/* [Hidden] /
// Convert Customizer inputs to working resolution
X_=X/10;
Y_=Y/10;
H_=H/10;
CR=(Corner_Radius== 0
? 0.05 // fudge for squar-ish corners
: Corner_Radius)/10;
gapX=Gap_X/10;
gapY=Gap_Y/10;
holeD=Hole_Diameter/10;
difference() {
linear_extrude(height=H_,convexity=10)
difference() {
// square with rounded corners
hull() {
for ( x=[CR,X_-CR]
, y=[CR,Y_-CR])
translate([x,y])
circle(r=CR);
} // h
// -
translate([X_/2-gapX/2,Y_-gapY])
square([gapX,gapY+0.05]);
for ( i=[0.25,0.75])
translate([X_i,0])
for ( j=[ (Number_of_Holes==0 ? 0:1) : Number_of_Holes])
//echo(i,j);
translate([0,X_/Number_of_Holesj-X_/Number_of_Holes/2])
circle(d=holeD);
} // d
// -
// 45 degree bevel - clearance for table tilt
if (Tilt_Bevel)
translate([X_/2+gapX/2,Y_-gapY,-0.05])
rotate([0,-45,0])
cube([gapX3,gapY+0.05,H_*3]);
} // d
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19045.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
I needed a new insert for my bandsaw, so designed one.
Decided to customize it.
Feel free to use as example if suitable.
> // Released to the Public Domain
> // Bandsaw insert plate
> // TODO: currently assumes gap is always in the centre.
>
> /* [Size in 1/10 mm] Main Tab */
> // Width i.e right angle to blade
> X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
> // Depth i.e. parallel to blade
> Y=380; // [1:0.1:500]
> // Height or thickness
> H=21;
> // Zero for square corners
> Corner_Radius=30;
> // Gap not incl. the beveled cut
> Gap_X=40; // [1:500]
> Gap_Y=288; // [1:0.1:500]
>
> /* [Holes] */
> // In 1/10 mm
> Hole_Diameter=48; //
> // per side
> Number_of_Holes=3; // [0:0.1:6]
>
> /* [Options] */
> // Bevel the gap for a tilt table
> Tilt_Bevel=true;
> // Facets in a circle
> $fn=16; // [3,4,8,12,16,20,24,28,32]
>
> /* [Hidden] */
> // Convert Customizer inputs to working resolution
> X_=X/10;
> Y_=Y/10;
> H_=H/10;
> CR=(Corner_Radius== 0
> ? 0.05 // fudge for squar-ish corners
> : Corner_Radius)/10;
> gapX=Gap_X/10;
> gapY=Gap_Y/10;
> holeD=Hole_Diameter/10;
> difference() {
> linear_extrude(height=H_,convexity=10)
> difference() {
> // square with rounded corners
> hull() {
> for ( x=[CR,X_-CR]
> , y=[CR,Y_-CR])
> translate([x,y])
> circle(r=CR);
> } // h
> // -
> translate([X_/2-gapX/2,Y_-gapY])
> square([gapX,gapY+0.05]);
> for ( i=[0.25,0.75])
> translate([X_*i,0])
> for ( j=[ (Number_of_Holes==0 ? 0:1) : Number_of_Holes])
> //echo(i,j);
> translate([0,X_/Number_of_Holes*j-X_/Number_of_Holes/2])
> circle(d=holeD);
> } // d
> // -
> // 45 degree bevel - clearance for table tilt
> if (Tilt_Bevel)
> translate([X_/2+gapX/2,Y_-gapY,-0.05])
> rotate([0,-45,0])
> cube([gapX*3,gapY+0.05,H_*3]);
> } // d
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19045.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Sat, Nov 12, 2016 5:28 AM
oops - minor correction - correctly align holes...
// Released to the Public Domain
// Bandsaw insert plate
// TODO: currently assumes gap is always in the centre.
/* [Size in 1/10 mm] Main Tab */
// Width i.e right angle to blade
X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
// Depth i.e. parallel to blade
Y=380; // [1:0.1:500]
// Height or thickness
H=21;
// Zero for square corners
Corner_Radius=30;
// Gap not incl. the beveled cut
Gap_X=40; // [1:500]
Gap_Y=288; // [1:0.1:500]
/* [Holes] */
// In 1/10 mm
Hole_Diameter=48; //
// per side
Number_of_Holes=3; // [0:0.1:6]
/* [Options] */
// Bevel the gap for a tilt table
Tilt_Bevel=true;
// Facets in a circle
$fn=16; // [3,4,8,12,16,20,24,28,32]
/* [Hidden] */
// Convert Customizer inputs to working resolution
X_=X/10;
Y_=Y/10;
H_=H/10;
CR=(Corner_Radius== 0
? 0.05 // fudge for squar-ish corners
: Corner_Radius)/10;
gapX=Gap_X/10;
gapY=Gap_Y/10;
holeD=Hole_Diameter/10;
difference() {
linear_extrude(height=H_,convexity=10)
difference() {
// square with rounded corners
hull() {
for ( x=[CR,X_-CR]
, y=[CR,Y_-CR])
translate([x,y])
circle(r=CR);
} // h
// -
translate([X_/2-gapX/2,Y_-gapY])
square([gapX,gapY+0.05]);
for ( i=[0.25,0.75])
translate([X_*i,0])
for ( j=[ (Number_of_Holes==0 ? 0:1) : Number_of_Holes])
translate([0,X_/Number_of_Holesj-X_/Number_of_Holes/(Number_of_Holes-1)])
circle(d=holeD);
} // d
// -
// 45 degree bevel - clearance for table tilt
if (Tilt_Bevel)
translate([X_/2+gapX/2,Y_-gapY,-0.05])
rotate([0,-45,0])
cube([gapX3,gapY+0.05,H_*3]);
} // d
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19046.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
oops - minor correction - correctly align holes...
> // Released to the Public Domain
> // Bandsaw insert plate
> // TODO: currently assumes gap is always in the centre.
>
> /* [Size in 1/10 mm] Main Tab */
> // Width i.e right angle to blade
> X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
> // Depth i.e. parallel to blade
> Y=380; // [1:0.1:500]
> // Height or thickness
> H=21;
> // Zero for square corners
> Corner_Radius=30;
> // Gap not incl. the beveled cut
> Gap_X=40; // [1:500]
> Gap_Y=288; // [1:0.1:500]
>
> /* [Holes] */
> // In 1/10 mm
> Hole_Diameter=48; //
> // per side
> Number_of_Holes=3; // [0:0.1:6]
>
> /* [Options] */
> // Bevel the gap for a tilt table
> Tilt_Bevel=true;
> // Facets in a circle
> $fn=16; // [3,4,8,12,16,20,24,28,32]
>
> /* [Hidden] */
> // Convert Customizer inputs to working resolution
> X_=X/10;
> Y_=Y/10;
> H_=H/10;
> CR=(Corner_Radius== 0
> ? 0.05 // fudge for squar-ish corners
> : Corner_Radius)/10;
> gapX=Gap_X/10;
> gapY=Gap_Y/10;
> holeD=Hole_Diameter/10;
> difference() {
> linear_extrude(height=H_,convexity=10)
> difference() {
> // square with rounded corners
> hull() {
> for ( x=[CR,X_-CR]
> , y=[CR,Y_-CR])
> translate([x,y])
> circle(r=CR);
> } // h
> // -
> translate([X_/2-gapX/2,Y_-gapY])
> square([gapX,gapY+0.05]);
> for ( i=[0.25,0.75])
> translate([X_*i,0])
> for ( j=[ (Number_of_Holes==0 ? 0:1) : Number_of_Holes])
>
> translate([0,X_/Number_of_Holes*j-X_/Number_of_Holes/(Number_of_Holes-1)])
> circle(d=holeD);
> } // d
> // -
> // 45 degree bevel - clearance for table tilt
> if (Tilt_Bevel)
> translate([X_/2+gapX/2,Y_-gapY,-0.05])
> rotate([0,-45,0])
> cube([gapX*3,gapY+0.05,H_*3]);
> } // d
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19046.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Sat, Nov 12, 2016 5:30 AM
well that's embarrassing...wrong again...
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19047.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
well that's embarrassing...wrong again...
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19047.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Sat, Nov 12, 2016 5:59 AM
I don't know what brain explosion I just had...original calculation was ok.
This version, hopefully final, has cleaner handling of zero holes.
// Released to the Public Domain
// Bandsaw insert plate
// TODO: currently assumes gap is always in the centre.
/* [Size in 1/10 mm] Main Tab */
// Width i.e right angle to blade
X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
// Depth i.e. parallel to blade
Y=380; // [1:0.1:500]
// Height or thickness
H=21;
// Zero for square corners
Corner_Radius=30;
// Gap not incl. the beveled cut
Gap_X=40; // [1:0.1:500]
Gap_Y=288; // [1:0.1:500]
/* [Holes] */
// In 1/10 mm
Hole_Diameter=48; //
// per side
Number_of_Holes=3; // [0:0.1:6]
/* [Options] */
// Bevel the gap for a tilt table
Tilt_Bevel=true;
// Facets in a circle
$fn=16; // [3,4,8,12,16,20,24,28,32]
/* [Hidden] /
// Convert Customizer inputs to working resolution
X_=X/10;
Y_=Y/10;
H_=H/10;
CR=(Corner_Radius== 0
? 0.05 // fudge for squar-ish corners
: Corner_Radius)/10;
gapX=Gap_X/10;
gapY=Gap_Y/10;
holeD=Hole_Diameter/10;
difference() {
linear_extrude(height=H_,convexity=10)
difference() {
// square with rounded corners
hull() {
for ( x=[CR,X_-CR]
, y=[CR,Y_-CR])
translate([x,y])
circle(r=CR);
} // h
// -
translate([X_/2-gapX/2,Y_-gapY])
square([gapX,gapY+0.05]);
if (Number_of_Holes > 0)
for ( i=[0.25,0.75])
translate([X_i,0])
for ( j=[ 1 : Number_of_Holes])
//echo(i,j);
translate([0,X_/Number_of_Holesj-X_/Number_of_Holes/2])
circle(d=holeD);
} // d
// -
// 45 degree bevel - clearance for table tilt
if (Tilt_Bevel)
translate([X_/2+gapX/2,Y_-gapY,-0.05])
rotate([0,-45,0])
cube([gapX3,gapY+0.05,H_*3]);
} // d
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19048.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
I don't know what brain explosion I just had...original calculation was ok.
This version, hopefully final, has cleaner handling of zero holes.
> // Released to the Public Domain
> // Bandsaw insert plate
> // TODO: currently assumes gap is always in the centre.
>
> /* [Size in 1/10 mm] Main Tab */
> // Width i.e right angle to blade
> X=380; // [1:0.1:500] // ATM 0.1 makes slider 'click' change by 1
> // Depth i.e. parallel to blade
> Y=380; // [1:0.1:500]
> // Height or thickness
> H=21;
> // Zero for square corners
> Corner_Radius=30;
> // Gap not incl. the beveled cut
> Gap_X=40; // [1:0.1:500]
> Gap_Y=288; // [1:0.1:500]
>
> /* [Holes] */
> // In 1/10 mm
> Hole_Diameter=48; //
> // per side
> Number_of_Holes=3; // [0:0.1:6]
>
> /* [Options] */
> // Bevel the gap for a tilt table
> Tilt_Bevel=true;
> // Facets in a circle
> $fn=16; // [3,4,8,12,16,20,24,28,32]
>
> /* [Hidden] */
> // Convert Customizer inputs to working resolution
> X_=X/10;
> Y_=Y/10;
> H_=H/10;
> CR=(Corner_Radius== 0
> ? 0.05 // fudge for squar-ish corners
> : Corner_Radius)/10;
> gapX=Gap_X/10;
> gapY=Gap_Y/10;
> holeD=Hole_Diameter/10;
> difference() {
> linear_extrude(height=H_,convexity=10)
> difference() {
> // square with rounded corners
> hull() {
> for ( x=[CR,X_-CR]
> , y=[CR,Y_-CR])
> translate([x,y])
> circle(r=CR);
> } // h
> // -
> translate([X_/2-gapX/2,Y_-gapY])
> square([gapX,gapY+0.05]);
> if (Number_of_Holes > 0)
> for ( i=[0.25,0.75])
> translate([X_*i,0])
> for ( j=[ 1 : Number_of_Holes])
> //echo(i,j);
> translate([0,X_/Number_of_Holes*j-X_/Number_of_Holes/2])
> circle(d=holeD);
> } // d
> // -
> // 45 degree bevel - clearance for table tilt
> if (Tilt_Bevel)
> translate([X_/2+gapX/2,Y_-gapY,-0.05])
> rotate([0,-45,0])
> cube([gapX*3,gapY+0.05,H_*3]);
> } // d
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19048.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
AK
Amarjeet Kapoor
Sat, Nov 12, 2016 9:10 AM
It'd be better to have a blank description take zero
vertical space.
Already listed in the github issue.
This is also already done.
Didn't make it to this snapshot?
On 12 November 2016 at 04:31, MichaelAtOz <oz.at.michael@gmail.com> wrote:
> Amarjeet Kapoor wrote
>>>> It'd be better to have a blank description take zero
>>>> vertical space.
>>>>
>>> Already listed in the github issue.
>>>
>>
>> This is also already done.
>
> Didn't make it to this snapshot?
>
I think its there. Although its not Zero.
http://imgur.com/a/63MEn
--
Amarjeet Singh
https://amarjeetkapoor1.wordpress.com
https://github.com/amarjeetkapoor1
https://bitbucket.org/amarjeetkapoor
"The journey of a thousand commit begins with a single init"
M
MichaelAtOz
Sat, Nov 12, 2016 11:30 AM
I think its there. Although its not Zero.
Amarjeet Kapoor wrote
> I think its there. Although its not Zero.
<http://forum.openscad.org/file/n19050/customizer_no_descr.jpg>
Looks the same, red v's blue, to me.
Possibly a Windows issue?
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19050.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Sat, Nov 12, 2016 10:49 PM
Looking at it again, the blue slider line is marginally higher, but the
whitespace below is just bigger...
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19061.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Looking at it again, the blue slider line is marginally higher, but the
whitespace below is just bigger...
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19061.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
M
MichaelAtOz
Sun, Nov 20, 2016 12:02 AM
I haven't looked into what the JSON file is about; however, I was doing a few
new designs, did not use customizer and when I looked there were JSON files
containing:
{
"fileFormatVersion": "1"
}
I would not expect spurious files to be generated if I didn't specifically
call for them.
2016.11.11
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19254.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
I haven't looked into what the JSON file is about; however, I was doing a few
new designs, did not use customizer and when I looked there were JSON files
containing:
{
"fileFormatVersion": "1"
}
I would not expect spurious files to be generated if I didn't specifically
call for them.
2016.11.11
-----
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
The TPP is no simple “trade agreement.” Fight it! http://www.ourfairdeal.org/ time is running out!
--
View this message in context: http://forum.openscad.org/GSoC-OpenSCAD-project-tp18102p19254.html
Sent from the OpenSCAD mailing list archive at Nabble.com.