🔌 Smart Spline | Fluid way to handle splines for furniture design and complex structures. Download
  • Making ThruPaingt treat image as single rather than texture

    6
    0 Votes
    6 Posts
    298 Views
    L
    Thanks all!
  • Where can I find cutting Plugin Report?

    6
    0 Votes
    6 Posts
    515 Views
    G
    will repeat, the plugin to which I gave the link stores the data in the format .xml . Not in the format .dbt P.S. you refer to a video made by me.
  • How do I install the Helic Along Curve plugin?

    4
    0 Votes
    4 Posts
    869 Views
    BoxB
    For future reference, If you get a .zip you can rename the .zip to .rbz and install it using the Install Extension button in Preferences.
  • ToolsOnSurface error

    12
    0 Votes
    12 Posts
    635 Views
    H
    @jeff thank you sooo so much, do you know how to avoid having all that bad geometry for future reference? @pbacot how would I go about doing that?
  • Any plugin that can create circular scenes around a circle?

    27
    0 Votes
    27 Posts
    4k Views
    K
    @driven said: why not the lightup player? Most of my clients don't have powerful / modern computers. If they don't have the proper openGL version, most of the nice effects are gone in the Lightup viewer. That's why I was thinking using a panorama (all the nice effects will be baked into a simple image). For stand-alone viewing of panorama's I'm testing now http://www.fsoft.it/panorama/FSPViewer.htm
  • Path Copy help

    13
    0 Votes
    13 Posts
    2k Views
    L
    @box said: Well I don't understand why you can see links but not the .gif. Path copy will use the component axes as the insertion point. So it will place that point along the path. If component axes is at a distance from the component, Path Copy will place the component the same distance from the Path. For example, If you changed the component axis so that it was directly under the light bulb, then the base of the lamp pole would be away from path but all the lights would be directly above it. Great, got it! Thanks!
  • [request] VisMap 2 update/fix

    11
    0 Votes
    11 Posts
    813 Views
    josephkim626J
    @db11 said: @jim said: It's an easy fix. It has to do with changes to the String class. ... I sent an update to Martin via his email. Thanks for identifying the needed fix Jim. I hope that Martin posts an updated version to the SCF plugin store. It seems to me that if more people knew how useful / time-saving this plugin is for any model with more than a few scenes, it would find a lot of users. I so could have used it over the past couple of days to clean up a walkthrough animation. And thanks again to Jsteacy for following up on the original post with Martin. Thanks db11, I was also wondering the same thing about the vismap2 until I found this post. was the fix done by martin? and where can I find it?
  • Missing progressbar.rb for shape bender plugin

    17
    0 Votes
    17 Posts
    6k Views
    chonC
    Wrong thread ! Sorry. My message here !
  • Help! PathCopy makes sahdows follow the path. Unrealistic.

    11
    0 Votes
    11 Posts
    574 Views
    L
    @box said: Right click on the component and select Scale Definition. For some reason this doesn´t make my objects turn the way that I set them. I remember it worked earlier after the help in this post, but not now when I try. Any ideas? The don´t follow paths the way they´re angeled in the original. About two times out of five they seem to end up just about anywhere on the artboard as well.. If I create the objects myself there doesn´t seem to be any problem, but when I import objects they´re a headace.
  • [req] plugin to save me from zoom section cut frustration

    14
    0 Votes
    14 Posts
    628 Views
    john2J
    @driven said: There is already [sort of]... 'Window' >> 'Model Info' >> 'Components' >> ' Component Axes' >> check 'Show...' then you assume the role of the 'Inspector' john 8 years of using Sketchup. I never saw this thing. ! Thanks
  • [REQ] Optimizing plugin

    8
    0 Votes
    8 Posts
    477 Views
    thomthomT
    We've been toying with an idea of providing automatic feedback to developers when they upload to extensions to EW. We could scan the RB files and detect use of typename and warn developers of the potential performance hit. The typename usage is the most common performance issue we see around.
  • [Plugin] Exploded Arc Centerpoint Finder UPDATE May 23, 2013

    59
    0 Votes
    59 Posts
    67k Views
    TIGT
    What makes you think it's not v8 compatible ? The previous post explained how to install it in v8 - but you do need the latest v8 version with the Preferences > Extensions > Install... button. If you don't have that, then get the latest v8 installer from here: http://help.sketchup.com/en/article/60107 Note how version 8 will no longer be supported after 20 May 2015, so keep a copy of the downloaded installer !
  • Windowizer 4 and 1001 bit tools' devide panel conflicts

    5
    0 Votes
    5 Posts
    1k Views
    rkoehn7341R
    Windowizer will only work properly if the face is absolutely on axis. erase two of your edges and re-align and it should work just fine.
  • Solar north plugin (2015)

    11
    0 Votes
    11 Posts
    12k Views
    M
    I just recently had problem and is related to the Windows browsing feature I had set. It was blocking some content. At top in the navigation bar check to see if you have the circle with bar through it. If so click that and select enable all content or disable any blocking showing. If that helps you may want to select tools and the compatibility view settings, click the learn more link . There is a good windows write up explaining all the various interactions
  • REQ: Checking if components (solids) intersect

    22
    0 Votes
    22 Posts
    2k Views
    B
    This is my version of the srcipt for now that seems to work for all non nested component instances module Bob # Huge parts of this code were written by TIG this is a sligthly modified version def self.intersectBob?(e1=nil, e2=nil) mod = Sketchup.active_model # Open model ent = mod.entities # All entities in model instance1 = e1 #sel[0] instance2 = e2 #sel[1] ci_def = instance1.definition tr1 = instance1.transformation test1 = Sketchup.active_model.entities.add_instance ci_def, tr1 ci_def2 = instance2.definition tr2 = instance2.transformation test2 = Sketchup.active_model.entities.add_instance ci_def2, tr2 result = test1.intersect(test2) cnt = result.entities.count if cnt > 0 int=true result.definition.entities.each {|ent| if ent.is_a? Sketchup;;Face ent.material = 'red' #Sketchup;;Color.new(255, 0, 0) end} else int=false end return int end #def self.del() #does not work like this typing Bob.del into the ruby console, meaning result has to be changed from local to global variable but I don't know how yet #result.erase! #end def self.intersectALL() model=Sketchup.active_model ss=model.selection ents=model.active_entities ss.clear gps=ents.grep(Sketchup;;Group) ins=ents.grep(Sketchup;;ComponentInstance) ens=gps+ins ens.uniq! ens.compact! (ens.length).times{|i| (ens.length).times{|j| next if j<=i if self.intersectBob?(ens[i], ens[j]) ss.add(ens[i]) ss.add(ens[j]) end } } puts "Any intersecting component-instances are highlighted..." end end In this script I still need to fix the deleting function which later will have to be added to an observer class so as soon as another is clicked (or a button is pressed) the resulting intersection is deleted. The more important function that still has to be added is that it does the check for all the nested components (and possibly groups). @giro I only have the 32 bits version so can't say
  • Crash with MIrror 4.2

    5
    0 Votes
    5 Posts
    2k Views
    P
    I was trying to mirror the 2x sub fascia on the end of the roof trusses from right side to left. select object first mirror point at peak of roof, second mirror point vertically on blue axis and third out on red axis. UPDATE I copy / pasted my model into a new file and now it works. Must have been a corrupted file. I did have a system crash at one point while working in the original file Also, the original file was the last of many Save Copy As versions as I explored different options for a garage. Thanks for your comments.
  • 3D Scanning for everyone

    6
    0 Votes
    6 Posts
    488 Views
    D
    it's a beta project, developers are using it with all sort of devices, the first apps are mainly for mac products, but there are many others around. I've had mine since July, but haven;t had time to get it working with SU [yet]... john
  • [req] random polygon division and guide points @ vertices

    12
    0 Votes
    12 Posts
    1k Views
    john2J
    @rich o brien said: Looks like someone is already building a future classic! http://www.youtube.com/watch?v=By_VJMXKVXk superb! I want to do that stuff exactly. How should I do it?
  • [Plugin] SketchUcation Tools 2.6

    212
    0 Votes
    212 Posts
    127k Views
    iichiversiiI
    I will try the .ZIP file technic, thanks TIG
  • [Plugin] Upload model with custom thumbnail — 12.01.2013

    20
    0 Votes
    20 Posts
    23k Views
    S
    @aerilius said: Hi, this plugin has a very different scope than what you need. File thumbnails work very differently and the approach of this plugin does not offer a solution for file thumbnails. This forum is full of discussions about thumbnails (ie. no thumbnails on Win64bit, small thumbnails on OS X), and many workarounds [1][2][3]. If you need a file to always the same thumbnail of the model from a specific perspective, you can make use of SketchUp's feature in "Model Info" to disable updating the thumbnail on save. Many thanks for clarifying that for me. All understood now. Cheers...>Stuart

Advertisement