ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • Quick Selection

    Plugins
    15
    0 הצבעות
    15 פוסטים
    799 צפיות
    Dan RathbunD
    The easiest fix for Ruby 2 and higher, is to use a refinement that only that file can "see" and use. I inserted the following at the top of the file (after deleting the Set reassignment): require 'set' # Create a refinement for the Set class: module DBUR module RefinedSet refine ::Set do alias :insert :add alias :contains? :include? end end end # Use the refinement: using DBUR::RefinedSet By request from @paddyclown, here is the "fixed" file. It still needs a drastic overhaul, but this will get it working (fingers crossed): DBUR_QuickSelection.rb @Didier-Bur ping (I do not know how to send this by PM in this new forum interface.)
  • New plugin to extrude multiple selected surfaces at once using your custom value

    Developers' Forum
    2
    2 הצבעות
    2 פוסטים
    59 צפיות
    Dan RathbunD
    Please reorganize your extension as a TRUE SketchUp extension. See: https://ruby.sketchup.com/file.extension_requirements.html Also, take note of the various numeric conversion methods that the SketchUp API has added to the Numeric class. (You do not need to write your own conversion formulae.) Here is an example that will default to model units, if the unit argument is blank: def convert_to_inches(value, unit = nil) units = Sketchup.active_model.options["UnitsOptions"] if unit.nil? # use model units case units["LengthFormat"] when Length::Architectural, Length::Fractional return value.inch when Length::Engineering return value.feet else # Length::Decimal unit = units["LengthUnit"] end end case unit when :in, Length::Inches then value.inch when :m, Length::Meter then value.m when :cm, Length::Centimeter then value.cm when :mm, Length::Millimeter then value.mm when :ft, Length::Feet then value.feet when :yd, 5 # NOTE: constant Length::Yard (5) was added for SU2020, # use 5 to avoid NameError exception in older versions. value.yard # yards to inches else value.inch # if inches or unknown end end Also, this is a good read for dealing with units in SketchUp: https://www.thomthom.net/thoughts/2012/08/dealing-with-units-in-sketchup/
  • Flags (onkeydown) in skp 2025

    Developers' Forum
    2
    0 הצבעות
    2 פוסטים
    32 צפיות
    Dan RathbunD
    FYI, I did report this to Trimble.
  • 3d dimensions visible for render

    Extensions & Applications Discussions
    2
    0 הצבעות
    2 פוסטים
    42 צפיות
    Dave RD
    I don't believe there are any extensions to do that. You could use 3D text and drawn 3D dimension and extension lines to create the geometry. I find it's simper and faster to combine a couple of image exports; the render and a dimensions-only image direct from SketchUp. This is a quick 10 second render to show the idea. The render: [image: 1751736869218-vise-render-resized.png] The dimensions-only image export from SketchUp: [image: 1751736887769-creasman-moxon-vise-dimens-resized.png] And after combining them in an image editor: [image: 1751736926906-creasman-moxon-vise-render-resized.png] The layer for the dimensions is set to Multiply in the image editor.
  • Bevel Emboss or Whatever how can i make this in sketch up???

    SketchUp Discussions
    7
    0 הצבעות
    7 פוסטים
    43 צפיות
    Dave RD
    Did you look at the video on it's ExtensionStore page? https://sketchucation.com/plugin/1103-extrudetools I still don't have time to do a video on the entire process but maybe this will help. I copied out the needed edges from the L I already made for this. Note that the straigh edges at the ends need to be divided into multiple segments and welded to make them curves. Two segments is enough, though. Going through the options I chose to no delete the original curves. Since the entire letter gets done in stages, you can't delete all of the edges after an extrusion because you'll need them for the neighboring steps. [image: 1751719413407-eebyr.gif]
  • I love all the Fredo products

    SketchUp Discussions
    8
    1 הצבעות
    8 פוסטים
    73 צפיות
    alexpacio2013A
    @rv1974 "OK, but it would have been nice to do it with 'fredo scale'"
  • FREDO ANIMATOR

    Extensions & Applications Discussions
    7
    0 הצבעות
    7 פוסטים
    39 צפיות
    R
    Fredo has solved this for me - I had a " : " in the sequence name, removed and it worked. Thanks!
  • [Plugin] NT_Replacer - v1.0.1

    Extensions & Applications Discussions
    2
    2 הצבעות
    2 פוסטים
    66 צפיות
    3
    thanks
  • PLAYING AROUND WITH WOOD TEXTURES

    Gallery
    1
    1 הצבעות
    1 פוסטים
    27 צפיות
    אין תגובות
  • Can one save settings in LayOut?

    Newbie Forum
    2
    0 הצבעות
    2 פוסטים
    10 צפיות
    Dave RD
    Output Override is a Document Setup setting so yes, you can save that as part of your template like the rest of the Document Setup options.
  • License not showing after donation for joint push pull

    Plugins
    2
    0 הצבעות
    2 פוסטים
    22 צפיות
    fredo6F
    Your donation (0.01 €) is not a license, just a kind recognition toward the author. So, to get a license, you need to purchase it from this Sketchucation page.
  • How to extrude multiple face groups at once?

    SketchUp Discussions
    2
    0 הצבעות
    2 פוסטים
    28 צפיות
    Rich O BrienR
    What seems at face value a rather basic operation is actually a lot more complex potentially. Rather than trying to executing a mass extrusion process do a sample extrusion to see what kind of geometry is output. A planar n-gon with 6 entities will result in 22 entities when extruded. Imagine if those 740 groups have ~100 entities each then you are asking Sketchup to create ~300k entities. SketchUp then has to consider other things like its inbuilt tolerance, are there curves etc.... This is not a simple as a simple extrusion if the geometry you are extruding is not efficient.
  • edge distorted in render view

    V-Ray
    1
    0 הצבעות
    1 פוסטים
    22 צפיות
    אין תגובות
  • SU Render Engine

    SketchUp Bug Reporting
    1
    0 הצבעות
    1 פוסטים
    14 צפיות
    אין תגובות
  • Justification of Dimensions

    LayOut Bug Reporting
    5
    0 הצבעות
    5 פוסטים
    39 צפיות
    SektaS
    Hi dave, I was going to upload a basic p[an of my daughters house but when I adjusted the dimensions the justifcation worked so not sure whats going on. I have been having major issues with the new SU render engine which has screwed up a few of my files but I will do a separate post on this. I will investigate the dimension justification issue further and let you know what I find. Thanks. Stan
  • [Plugin] 3D Text Editor

    Plugins
    197
    0 הצבעות
    197 פוסטים
    165k צפיות
    J
    @TIG Ah legend. I've just converted a OTF to TTF and it's found it. Thanks
  • clothworks and make2017

    נפתר Extensions & Applications Discussions
    4
    1 הצבעות
    4 פוסטים
    21 צפיות
    Rich O BrienR
    Extensions > Clothworks > Manual menu is your friend. Artificial Intelligence is naturally stupid.
  • Toposhaper Issue

    Extensions & Applications Discussions
    13
    1 הצבעות
    13 פוסטים
    78 צפיות
    pkbrooksP
    Actually a better plugin for someone who writes plugins would be a UI that shows all current .dwg layers and next to each layer is a tag selection box. this would allow me to move thru reassignments with ease. But even better would be that every piece of geometry then gets grouped and tagged with the new SKU tag and the geometry within is assigned to "untagged".
  • 3D terrain scanning/point cloud import

    Extensions & Applications Discussions
    6
    0 הצבעות
    6 פוסטים
    41 צפיות
    grizzlerG
    @Rich-O-Brien said in 3D terrain scanning/point cloud import: 3.6gb mesh is a lot to handle for many apps. But SketchUp is not meant to be a platform for such a use case. I'd import that into Blender and try using either a Decimate or Remesh modifier to reduce the point count to get something usable in SketchUp. You also may have many duplicate points in that mesh which would cause chaos in SketchUp so some cleaning would be needed in that area too. I tried importing a 64,000kb monochrome .dae into Sketchup and that was completed within 30 seconds or so, but working with it was pretty much impossible. I tried running both a cleanup and converting triangular mesh to quad, but both failed. I've previously imported a small 3D scan of a room complete with textures as a .glb from an ipad and that worked great, but anything beyond that is a world of pain.
  • [Plugin] LordOfTheToolbars - v2.9c - 20 Dec 24

    Plugins
    452
    1 הצבעות
    452 פוסטים
    314k צפיות
    fredo6F
    For the native tools, I did not change the icons. So you get the old ones. I don't think I will update them.