SketchUcation Premium Membership

 

 

[Plugin] Guide Tools (1.3.0) — 21 October 2010

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby thomthom » Tue Oct 12, 2010 9:29 am

Pilou wrote:
Where edges are split where they intersect? Or where they overlap - like they often do in SU6 and older?

I don't know, on the face I suppose :oops:

Something is lost in translation here - I mean should there be a CPoint only when two edges cross each other but doesn't split each other?


Pilou wrote:So there are 2CPoint overlaped
or they are automatical merged as one by SU as having same coordinates ?
(same than you draw 2 lines ovelapped)

I don't know - I haven't tested it. The plugin just adds a CPoint blindly.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby Pilou » Tue Oct 12, 2010 9:45 am

I have just tested seems there are really 2 CPoints! :o
Maybe some annoyous ;)
click image if scrool bar!
doublecpoint.jpg
Please, register (free) to access all the attachments on the forums.
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby TIG » Tue Oct 12, 2010 10:14 am

I think Pilou's issue with 'duplicated Cpoints' - i.e. at the same location in 3D space - is if they are used to place Instances later it will duplicate the Instances etc.
When adding the new Cpoints it'd be relatively easy to test to see if there was a Cpoint already there.
First make a collection of Cpoints in the current context [entities] and make an array of the 'position' of each one: then only add the new Cpoint if it's not already there - code-example...
Code: Select all
there=false
cpoint_positions.each{|p|(there=true;break)if p==new_point}
entities.add_cpoint(new_point) if not there
You should still add coincident Cpoints if they are in different contexts [entities-sets]...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13987
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby thomthom » Tue Oct 12, 2010 10:31 am

Slightly trimmed variant:
entities.add_cpoint(new_point) unless cpoint_positions.any?{|pt|pt==new_point}
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby Pilou » Mon Oct 18, 2010 9:37 am

In fact that must be 6 points! :roll:
1 Center of circle
1 Intersection of lines
4 Intersection Lines Circle

Here I have a lot of more ;)
I have made Intersection before launch the plug Edge/edge (V 6)

Edit I have found a Process
General Intersection
Hide Circle
Call the Plug Guides Tool - Edge/edge
Show Circle
Select Circle
Call ad Cpoint to Circle
I have my six points :fro:
Easy for not numerous circles but for many ? ;)
Ok I can use Selection Toys Circles :enlight: ;)

intersection.jpg
Please, register (free) to access all the attachments on the forums.
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby thomthom » Mon Oct 18, 2010 9:51 am

Why do you hide and show the circle?
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby Pilou » Mon Oct 18, 2010 9:58 am

Yes see my edit text ;)
In fact that must be Selection Toys "Arcs"
Hide
because the interections are made before ;)

Process must be
Ad CP Circle(s)
General Intersection
Selection Toys "Arcs"
Hide
Add CPoint Edge /Edge
Show Hidden
:fro:

When Edge / Edge Cpoints are they "Doubled" between 2 segments of a same lines or not? (like my lines above after the intersection)
(at the commune extremities)
Seems not! :fro: (I have verified with the outliner) :enlight:

You have just the problem of same arc centers of my previous old post ;)
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby watkins » Mon Oct 18, 2010 4:02 pm

Dear Thomas,

Could the following be added to the suite of cpoint functions?

To place a construction point at the intersection of three orthogonal planes.

Thanks,
Bob
watkins
 
Posts: 1367
Joined: Wed Nov 14, 2007 5:47 pm

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby TIG » Mon Oct 18, 2010 7:08 pm

watkins wrote:Dear Thomas,
Could the following be added to the suite of cpoint functions?
To place a construction point at the intersection of three orthogonal planes.
Thanks,
Bob

Should be straightforward...
Get line of the intersection of two of the planes.
get the intersection of the third plane and the line.
Add a cpoint...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13987
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.2.0) — 11 October 2010

Postby Pilou » Tue Oct 19, 2010 10:46 am

@ Thomthom
Does it possible to have an option for DWG export?

Problem is: Tocad don't import CP POINT !!! :o
So circle center oe arc circle center info are losted!

So a possibility is to replace CPoints by 2 or 3 lines crossed.(3 axis)
(as "component" even Tocad lost the "component" it draw the lines! :enlight:
And each circle is tranformed in disc by ToCad.

So Replace CPoints by crossed lines will be fine for DWG export :)

Of course the replacement can be made by Selection Cpoint/Put Component at Cpoints.
(problem of mutiple same CPoints must be also resolved) :)
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby thomthom » Thu Oct 21, 2010 7:53 pm

Version 1.3.0
CPoint at Camera Eye - Adds a construction point at the Camera eye.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby utiler » Thu Oct 21, 2010 11:27 pm

Great addition Thom! All your work with rubies are very much appreciated!!!
:thumb:
purpose/expression/purpose/....
User avatar
utiler
Top SketchUcator
 
Posts: 1927
Joined: Wed Nov 14, 2007 11:35 am
Location: Queensland, Australia
Name: utiler
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby lapx » Fri Jan 07, 2011 8:54 pm

Tom,
Thanks! I've been searching for this for a while.

Best, Lapx.
lapx
 
Posts: 576
Joined: Wed Dec 05, 2007 11:14 pm

Re: [Plugin] Guide Tools (1.1.0) — 06 September 2010

Postby Bob James » Sun Jan 30, 2011 10:12 am

Pilou wrote:Drilling Milling[/url] by Menfin (French and English version) :enlight:

This looks like it would be very handy, but the forum is in French (only) and doesn't allow download without being a member of the forum. :(
"If you don't plan ahead you'll be at the mercy of those that do" - Ashleigh Brilliant

"Bad is not good until worse happens" - Bob James
User avatar
Bob James
Premium Member
Premium Member
 
Posts: 608
Joined: Fri Jan 18, 2008 9:29 pm
Location: Lompoc, CA, USA
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby dedmin » Mon Feb 07, 2011 9:52 pm

Is it possible to add "CPoint at Insertion Point" for groups also?
dedmin
 
Posts: 823
Joined: Thu Oct 02, 2008 10:40 pm

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby thomthom » Mon Feb 07, 2011 10:17 pm

dedmin wrote:Is it possible to add "CPoint at Insertion Point" for groups also?

I'll add it to the list.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby dedmin » Mon Feb 07, 2011 10:18 pm

:bounce: :bounce: :bounce:
dedmin
 
Posts: 823
Joined: Thu Oct 02, 2008 10:40 pm

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby Larsen » Wed May 11, 2011 12:51 pm

Amazing tools!
Thanks thomthom for your generosity.
[Every form of thinking perish by excess of its basic principles.
Larsen
 
Posts: 94
Joined: Sat Dec 04, 2010 9:54 pm

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby baiduaiya » Fri May 20, 2011 10:26 am

thank you very much.
baiduaiya
 
Posts: 6
Joined: Thu Jan 06, 2011 3:07 am
Name: Kevin

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby matt.gordon320 » Wed Nov 02, 2011 2:20 am

Thank you so much! Amazing Tools as always...
matt.gordon320
Premium Member
Premium Member
 
Posts: 63
Joined: Mon Apr 18, 2011 12:57 pm
Name: Matt
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby carlm » Thu Feb 09, 2012 6:49 pm

Hi Thom-

Just downloaded your Guide Tools and TT Lib2; they seemed to be working fine, then I tried adding CPoints to the circles in the attached file. There's one circle that the tool refuses to work on (top, far right).

The odd thing is that your tool had no trouble adding a CP to the other end of the same hole (see bottom side), and I made the row of holes by drawing one circle on face, move+ x2, then pushed them through...

I tried both selecting the face and then using Guide Tools, and just selecting the circle and using Guide Tools, both with CPoint at Circle Center and CPoint at Arc Center.

Thought you'd want to see it.

SU8 (pro-expired)
MacOS 10.5.8

Thanks, -carl-
Please, register (free) to access all the attachments on the forums.
carlm
 
Posts: 11
Joined: Sat Aug 28, 2010 6:57 pm
Name: Carl

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby carlm » Thu Feb 09, 2012 7:02 pm

Never mind?

After encountering this problem, the plugin wouldn't install guide points in other files either.

Quit SU, reopened, seems to work fine, even on the file I just posted...

It does seem that SU is less stable since installing Selection Toys and TT Lib1 this morning, but could be the moon -- this is not a report yet.

Sorry! -carl-
carlm
 
Posts: 11
Joined: Sat Aug 28, 2010 6:57 pm
Name: Carl

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby Anton_S » Sun Mar 11, 2012 9:52 am

Very, useful tool... Thanks :!:
Anton_S
 
Posts: 208
Joined: Tue Nov 23, 2010 9:15 pm
Location: Salem Oregon US
Name: AntonSynytsia
Operating system: Windows
SketchUp version: 8
License type: Free
SketchUp use: hobby
Level of SketchUp: Intermediate

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby guanjin » Wed Mar 14, 2012 3:18 am

[quote="carlm"]Hi Thom-

Just downloaded your Guide Tools and TT Lib2; they seemed to be working fine, then I tried adding CPoints to the circles in the attached file. There's one circle that the tool refuses to work on (top, far right).

The odd thing is that your tool had no trouble adding a CP to the other end of the same hole (see bottom side), and I made the row of holes by drawing one circle on face, move+ x2, then pushed them through...

I tried both selecting the face and then using Guide Tools, and just selecting the circle and using Guide Tools, both with CPoint at Circle Center and CPoint at Arc Center.


You want to set the coordinates of the components

dian.gif
Please, register (free) to access all the attachments on the forums.
I come from China, is to learn
User avatar
guanjin
 
Posts: 190
Joined: Thu Apr 08, 2010 6:52 am
Name: XIAOLONG
Operating system: Windows
SketchUp version: 8
License type: Free
SketchUp use: interior design
Level of SketchUp: Intermediate

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby thomthom » Wed Mar 14, 2012 10:32 am

From that animation I don't see what the problem is. It seem to create CPoint where it should ... :?: :?:
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby Pilou » Wed Mar 14, 2012 11:30 am

Hello Thomthom
I had given your wonderful plug Guide Tools as answer for this question :fro:

Maybe you can add an option for give an orientation to the component ? (Insert Components at CPoints)
That will be very useful in a lot of cases! :enlight:
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby thomthom » Wed Mar 14, 2012 12:18 pm

Pilou wrote:Maybe you can add an option for give an orientation to the component ?:

Orientation is defined by the component axis. Or did you mean something else? Image example?
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17626
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby Pilou » Wed Mar 14, 2012 2:08 pm

Assuming the original component has these axis and keep them
and of course that you make a different selection for each "plan" of Cpoints
(here 3 selections with call of the pluging at each time) the more easy to code ;)

The input box could be for a selection for the first result:
Insert Components at CPoints with
(No rotation so default parameters = 0°) :)
Rotate Components on X = 0°
Rotate Components on Y = 0°
Rotate Components on Z = 0°

The input box could be for a selection for the second result:
Insert Components at CPoints with
Rotate Components on X = 0°
Rotate Components on Y = 0°
Rotate Components on Z = 270°

The input box could be for a selection for the third result:
Insert Components at CPoints with
Rotate Components on X = 0°
Rotate Components on Y = 0°
Rotate Components on Z = 90°

Seems useful no ? :enlight:
axes_thom.jpg
Please, register (free) to access all the attachments on the forums.
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10055
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby ZFRPS » Wed Mar 14, 2012 3:03 pm

Thank you very much!
your pluhins give me a lot of help!this plugin is great! wish more powerful!
sketchup is bim
ZFRPS
 
Posts: 88
Joined: Tue Jul 29, 2008 1:40 am

Re: [Plugin] Guide Tools (1.3.0) — 21 October 2010

Postby scott216 » Thu Mar 21, 2013 8:11 pm

Is there a way to add a guidepoint to the center of an exploded circle? I tired exploded arc and just circle tools, but neither of them worked on an exploded circle.
scott216
 
Posts: 12
Joined: Sat Aug 11, 2012 8:36 pm
Location: New Jersey
Operating system: Mac
SketchUp version: 8
License type: Pro
SketchUp use: hobby
Level of SketchUp: Intermediate

SketchUcation One-Liner Adverts

by Ad Machine » 5 minutes ago

Vertex Tools for SketchUp. Take control over each vertex with this vertex editor for SketchUp.

Premium Members get 20% discount!

Ad Machine
Robot
 
Posts: 2012

PreviousNext

Return to Plugins

Who is online

Users browsing this forum: Ceiras, chrislbj, Google Feedfetcher, haakonn, ken chen, Krisidious, nikusknx and 13 guests