sketchucation logo sketchucation
    • Login
    1. Home
    2. NewOne
    3. Posts
    Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
    🚨 Skimp | 25% Off until March 30 Buy Now
    N
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 59
    • Posts 317
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: [REQ] Flagstone

      can you find something interesting here ? http://mayang.com/textures/Stone/html/Paving%20Stones/index.html
      You can read License Terms here http://mayang.com/textures/ on bottom of the page.

      good day.

      posted in SketchUp Components
      N
      NewOne
    • RE: UV plugin idea... maybe someone will make it.

      @thomthom said:

      That is one of my to-do projects. But I have not had any time lately to take it on.

      One thing from your illustration confuses me - the bit where it said it should be a single surface. You mean one big face with none of the internal edges?

      The drawing was mede from component instances rotated, not a single face... Even if there would be a single face, the verticles that can delimitate quads will be on edge segments.
      And the most interesting situation for this one would be this one:


      example2.jpg

      posted in Developers' Forum
      N
      NewOne
    • UV plugin idea... maybe someone will make it.

      To rotate texture coordinates so it can be applied on a horizontal curved surface. (eg. a road, brushed metal corner...)
      In the visual example I made a component instance, then I rotated it to exemplify the result.
      I know there is UV Toolkit, but that use entire texture image to fit it in a quad, regardless of its dimensions.What would be nice, that the texture on next segment to continue from where it ended on previous one (like "projected texture" works).

      What do you think, people? ❓ πŸ’š


      example.jpg

      posted in Developers' Forum
      N
      NewOne
    • RE: [REQ.] Quick! corner sink

      @dedmin said:

      http://www.us.kohler.com/tech/cadsymbol/cadsymbol.jsp

      Thanks!! this will be very helpfull in the future.
      Lots of (free) models! but... I could not find what I need.

      posted in SketchUp Components
      N
      NewOne
    • [Request] 'Mass Reset Scale'

      I need a quick plugin that allows me to mass reset scale to all components in a model. To increase accuracy of imported models from a dwg, i make the import using Meters (dwg is in mm), so after import it needs scaling back. If I convert a group in component, it keeps the original scale (1000 times bigger). Usually I have over 50-100 entities in one import and it's a real pain to reset scale manually to all.
      It would be a lot easier with an "Ctrl+A" and a right click or button push πŸ˜„.
      The script must remove from selection possible entities that have not "reset scale" options (edges, faces, construction geometry, groups...)

      1000 thanks, hoping somebody will help me.

      posted in Plugins
      N
      NewOne
    • [REQ.] Quick! corner sink

      Hy! Please if somebody have a corner sink better than attached model... I need one and it's urgent.
      Thank you all!
      It's ok if is DWG, 3ds, obj, not necesarry skp.

      LATER EDIT:
      I'm sorry, maybe this post should be in Components, Materials & Styles, i didn't noticed earlier.


      corner sink.jpg

      posted in SketchUp Components sketchup
      N
      NewOne
    • RE: Some high quality 3D models... hope you will find usefull

      @majid said:

      many many thank you mate πŸ˜„. wich render engine you've used to render models?

      maxwellrender v1.7 😒 (I cry because v.2 it's not coming...)

      posted in Gallery
      N
      NewOne
    • Some high quality 3D models... hope you will find usefull

      All this models can be found on 3D Warehouse.
      author: NewOne

      candle.jpg
      furniture legs for your furniture projects...
      ...and it's new! For your new home!
      It took me two days to make the socket... in a time when rubies were not as complex as now
      this should enlight you...
      The pillows for the Sofa are not as I'd like to be. Is somebody can make better ones, please contact me to update the model. Thanks!
      Take a rest...
      and finally a present for you all!... in a few months you'll need it πŸ˜„
      winter globe.jpg

      posted in Gallery
      N
      NewOne
    • RE: [Plugin] Point v1.2

      The Blue Icon, because Simon Le Bon loved it...PointTool-blue.png
      for making the script to show cursor, see this post: http://forums.sketchucation.com/viewtopic.php?f=180&t=13077&st=0&sk=t&sd=a&start=15#p184325


      contains icons (24x24, 16x16) and cursor (32x32)

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Selection Toys

      Is this normal? Select Quad-face loop doesn't mean to select closed loop edges that form a quad? Or I misunderstood ?
      This is what happened:

      BTW: I think you have an error on cursor code; Would you please take a look? ( as I know correct syntax is UI::create_cursor(cursor_path, x, y) )


      1.png


      2.png

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Selection Toys

      @thomthom said:

      Maybe the new one should be named Select Edge Loops ?

      Yes, it's a better name. This one I think is a function that will be used very often, so why don't you make an icon for it instead of hiding it in Tools menu where is a little hard to find? πŸ˜„

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Selection Toys

      @thomthom said:

      Quad-face Loop works as expected. I tried to illustrate it with that gif animation. It selects connected faces and edges in a row.

      Can you illustrate your expected result?

      (You're not confusing it with the new Face Loop feature I just added? The new feature is accessed from the Tools menu. See comment over the first illustration.)

      Yes I did confused that two features! πŸ˜„ sorry. I like that feature. It saves me lots of clicks - and therefore it saves my mouse! 🀣

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Point v1.2

      --EDITED POST-- changed the files, and added code suggestion.

      Alternate icons for PointTool
      Matt666, if you like this icons, please edit your script to use 24x24px and 16x16px icons.

      The changes I made to your script to accept those icons and cursor icon are:

      
      cmd.large_icon = File.join(p, "PointTool", "PointTool24x24.png")
      cmd.small_icon = File.join(p, "PointTool", "PointTool16x16.png")
      
      

      and

      
      def initialize
      #...your previous code
      p=Sketchup.find_support_file("Plugins")
      pointTool_cursor_path = File.join(p,  "PointTool", "PointTool cursor.png")
      @@pointTool_cursor = UI;;create_cursor(pointTool_cursor_path, 3, 30)
      end
      
      def onSetCursor
      UI;;set_cursor(@@pointTool_cursor)
      end
      
      

      I am not sure if this is entirely correct, but it works for me.
      If you decide to change the icons, pay attention on hotspot coordinates of the cursor πŸ˜‰
      Suggestion: add getExtents method to avoid disappearance of the OpenGL line.

      
      def getExtents
      bbox = Geom;;BoundingBox.new
      	bbox.add @ip1.position
      	if (@state == 0)
      		bbox.add @ip.position if (@ip.valid? && @ip.display?)
      	elsif
      		bbox.add @ip2.position
      	end
      	bbox
      end
      
      

      P.S. I like your script very much, it ease my work a lot! It's a simple, but strong idea!


      contains 16x16, 24x24 and 32x32 PNG


      visual example

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Point v1.2

      @jim said:

      Sketchup Toolbar icons are 24x24, or 16x16 for the small icons. Tool cursors are 32x32.

      THANK YOU !!
      I tested with 24x24 and it looks wonderfull.

      posted in Plugins
      N
      NewOne
    • RE: [Plugin] Point v1.2

      @simon le bon said:

      Hi NewOne,
      Your icons are NumberOne πŸ˜‰
      But when i try to use them (32x32), their quality isn't at the "rendez-vous" . Why? I can't say.
      simon

      Well... This is what I do now: try to figure out why on image viewer and on forum page the icon looks nice, but in Sketchup is a little messed up.
      QUESTION: how many colors does sketchup accept for icons? true color, 256, or less? 😳

      posted in Plugins
      N
      NewOne
    • RE: Add construction point (help find script)

      @tig said:

      or Matt666's PointTool.rb - here http://forums.sketchucation.com/viewtopic.php?p=95648#p95648

      thank you, TIG, this is the one! πŸ˜„

      posted in Developers' Forum
      N
      NewOne
    • RE: Add construction point (help find script)

      @ecuadorian said:

      Didier Bur's projections toolbar can do it.

      well, I'd rather not buy entire pig for a piece of meat πŸ˜„ . I have that plugin but as I rarely use the other functions I prefer to not load my workplace with too many icons.

      posted in Developers' Forum
      N
      NewOne
    • Add construction point (help find script)

      Hy! a few weeks ago I found a script to add construction points. It had an pencil as icon (if I remember right, the pencil was with red tip πŸ˜„ )
      Unfortunately, I lost that script and now I cry for it.
      Can I get some help? thanks

      EDIT: -it could draw a cPoint at a given distance.
      πŸ˜•

      posted in Developers' Forum
      N
      NewOne
    • RE: [Plugin] Axis components (Updated 6/12/2010)

      Nice tool! You might think to change the icon, because is already one in SU and this can be confusing. πŸ˜„

      posted in Plugins
      N
      NewOne
    • RE: [Req.] remove instance duplicates plugin

      @tig said:

      Works for me. Are the overlapping instances the same definition and are they exactly overlapped? Copy one and move it by a corner snapping back over the other - you should then get a highlighted instance when tested...

      It works now. It is possible that I did not overlapped exactly. Now I tried again moving back by exact distance. Can you add a tolerance ? +/- 0,1mm ? Bigger tolerance is easy identified by eye.
      Thank you for the script!

      posted in Plugins
      N
      NewOne
    • 1 / 1