Version 1.0.38 now ready for download.
Fixed a network path issue.
Version 1.0.38 now ready for download.
Fixed a network path issue.
I see what you mean however these are actually 'Additional' since there are 5 items.
only 2 of them are Part adjustments
Then there is 1 part adjustment in the drawer box section and then each door template has 5 adjustments.
I'm running Windows 10 and I have Sketchup 7 through Sketchup 2016 installed
I was using Sketchup 8 for all my developmental work. Now I use Sketchup 2016 as I like a lot of the new features. More ways to draw arcs, better tool bar handling, trays, better info when working through bugs.
The other versions are simply for testing my plugins. I use a strategy where my plugins go into a shared folder that all versions of sketchup use. So I can configure a plugin and then test it on all versions of sketchup. This also makes it much easier when upgrading. When Sketchup 2016 came out all I had to do was drop a 2 line ruby file into 2016's plugin folder. All plugins loaded without having to install them.
Please check the 'Additional' section in the Rules 2 tab
Side Width Adj:
Top / Bottom Width Adj:
There are several adjustments that are required for cabinet makers who need to increase the size of various parts. That includes:
Sides, Tops, Bottoms, Drawer Box Fronts and Backs and Door parts (Stiles, Rails and Panels)
The fix is now in version 1.0.37.
I've set:
Corner brace width = 0
back material thickness = 5/8"
Back offset = 0
Back dado = 0

This is a bug. I will fix this and include it in today's version 1.0.37
Set Config if you want dimensioning. Also you can set a network path here.
New version available shortly.



I've alreday started adding dxf export to my cutmaster Gold.
I've had a request to allow drawer banks with angled cabinets and with return cabinets. Anyone else interested. Any other feature requests?
I'm averaging updating my current plugin every 5 calendar days without any complaints. I see nothing wrong with getting the updates out fairly quickly.
I am fairly good at incremental version numbers. When the plugin checks in with my web service it gets the current version from my web site and notifies the user that a new update is available if the version number is different. Works fine when I don't miss changing the plugins version number.
Working on requested features and bug fixes.
Randolf Franklin solved this problem back in the 1970's
Here is his original 2D code for a single polygon
int pnpoly(int nvert, float *vertx, float *verty, float testx, float testy)
{
int i, j, c = 0;
for (i = 0, j = nvert-1; i < nvert; j = i++) {
if ( ((verty[i]>testy) != (verty[j]>testy)) &&
(testx < (vertx[j]-vertx[i]) * (testy-verty[i]) / (verty[j]-verty[i]) + vertx[i]) )
c = !c;
}
return c;
}
I ran a modified version of this code on very old mobile computers 80186 processor running at 18 megahertz. We used it to determine which State or Province your vehicle is in.
3D isn't much more difficult but you do have to look at each face and see if your ray passes through it or not.
Thank you Nathaniel for your kind words.
Here is the first tab in French.

Version 1.0.36 is now available for download from my website
Login to my web site
http://cabmaker32.com/login/
Then go to download page (you need to be logged in to download.
The red borders identify rules. Notice that some rules and some cabinet parameters have been moved around. Hopefully this simplifies the work flow and reduces confusion.
Version 1.0.36 will be ready later today. French Translation is complete. Web Dialog is reorganized.






