ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • Does SPGears work with SketchUp 2017

    Plugins
    2
    0 Votes
    2 المشاركات
    20 المشاهدات
    TIGT
    It's been around since 2012 so my guess is it does...
  • Importing/creating streetmap data into Sketchup

    Extensions & Applications Discussions
    5
    0 Votes
    5 المشاركات
    81 المشاهدات
    M
    @Rich-O-Brien Thanks for the suggestion. I noticed this tool few weeks ago and this would be perfect for "tracing roads" because you can define the road width separately. Unfortunately I have not found a way to include coast line in this tool and the water/sea areas are not properly defined. Hopefully this tool will be even further developed.
  • Marvins_dad's Gallery

    Gallery
    86
    0 Votes
    86 المشاركات
    15k المشاهدات
    Bryan KB
    Excellent work!
  • CABIN IN THE WOODS, REVISED

    Gallery
    5
    3 Votes
    5 المشاركات
    59 المشاهدات
    Bryan KB
    Very nice design.
  • OLD SKETCH OF BEACH HOUSE

    Gallery
    6
    2 Votes
    6 المشاركات
    43 المشاهدات
    Bryan KB
    Very nice!
  • [Plugin] FredoTools - v4.5c - 24 Jun 24

    Plugins
    463
    0 Votes
    463 المشاركات
    673k المشاهدات
    R
    a true Doh! moment - Angle Inspector has Slope meter in %% ! Many many thanks, Fredo. P.S. Maybe one day it would become interactive - showing live the slope altering.
  • Model for 3D print will not make solid (SU 2015)

    Extensions & Applications Discussions
    10
    0 Votes
    10 المشاركات
    31 المشاهدات
    jgbJ
    OK, I'll try meters next 3D printed model. Again, thanks for the help and advice. jgb
  • Alfa Romeo 4C Renders HQ.

    Gallery
    4
    3 Votes
    4 المشاركات
    22 المشاهدات
    pixelcruncherP
    Hey Mike, great to see you picking up Rayscaper again! Beautiful car, and great render!
  • Question regarding existing 3-seat license...

    Plugins
    2
    0 Votes
    2 المشاركات
    11 المشاهدات
    Rich O BrienR
    @dshaffer email us at support@sketchucation.com and we can walk you through things
  • Recent Renderings

    Gallery
    5
    6 Votes
    5 المشاركات
    55 المشاهدات
    Gus RG
    My computer died again. It's either the motherboard or the CPU. I have the previous CPU. Might be the motherboard.
  • Strange corners

    SketchUp for 3D Printing
    3
    0 Votes
    3 المشاركات
    15 المشاهدات
    Dave RD
    Hard to say from just a single image. What orientation was the model in on the bed? What material?
  • SU freezes

    SketchUcation Community Forums
    3
    0 Votes
    3 المشاركات
    26 المشاهدات
    L
    Hi It’s now doing the same thing on my new m2 Mac mini, have to save as , then able to carry on So frustrating
  • Haloween

    Gallery
    1
    3 Votes
    1 المشاركات
    20 المشاهدات
    لم يرد أحد
  • Sketchup 2017 suddenly closes

    Newbie Forum
    3
    0 Votes
    3 المشاركات
    28 المشاهدات
    Mike AmosM
    Grammar means everything, I think he means this.... "I use SU 2017, as a subscription doesn't make sense as I don't use the program regularly". The comma makes sense of it.
  • Recommended version of SketchUp?

    Plugins
    2
    0 Votes
    2 المشاركات
    19 المشاهدات
    Rich O BrienR
    Its compatible with 2024 and 2025 You might expand on the troubles you mention as that is likely more important.
  • [Plugin] MatSim (Material Simulation) - v1.5b - 09 Jul 25

    Plugins
    35
    0 Votes
    35 المشاركات
    263 المشاهدات
    fredo6F
    @Berserk said in [Plugin] MatSim (Material Simulation) - v1.5b - 09 Jul 25: The extension is very useful. But in the large model there is a limit on the number of materials supplied, and the color theme change takes a very long time (2 min.) on a modern computer (AMD 16 honest cores up to 5 GHz, 128GB RAM, RTX 2080 Super 12 GB). A model of a city with 80,000 inhabitants. Unfortunately, I can't share the model. I released MatSim v1.5b, with up to 150 materials by simulation, instead of 50 (which I already considered a lot). For performance, I am not sure MatSim can do better than what Sketchup would do natively by permuting materials. As for any automated process, just consider how long it would take you to do it manually...
  • Beveled corners without overlaps

    Solved SketchUp Discussions bevel modelling
    5
    0 Votes
    5 المشاركات
    36 المشاهدات
    S
    @Dave-R Ah yeah. That works. Thank you.
  • Quick Selection

    Plugins
    15
    0 Votes
    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.)
  • 2 Votes
    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 Votes
    2 المشاركات
    32 المشاهدات
    Dan RathbunD
    FYI, I did report this to Trimble.