sketchucation logo sketchucation
    • Login
    1. Home
    2. HPW
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
    H
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 29
    • Posts 126
    • Groups 1

    HPW

    @HPW

    10
    Reputation
    1
    Profile views
    126
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    HPW Unfollow Follow
    registered-users

    Latest posts made by HPW

    • RE: SimLab 3D PDF for SketchUp verison 3 released

      Hello,

      It s not my plugin, I only evaluated it.
      Contact simlab support with your problem.

      Regards

      Hans-Peter

      posted in Plugins
      H
      HPW
    • RE: .skp to inventor autodesk

      Hello,

      Generally it is hard or impossible to convert a surface modell to a solid modell file.
      From solid to surface only the surface is triangulated and the surface mesh is written.

      The question is also what inventor fusion has build from the surface-file?
      It might be still a mesh-modell.

      Regards

      Hans-Peter

      posted in Newbie Forum
      H
      HPW
    • RE: Perfect Isometric View in Sketchup

      Lets just say that the metod I showed allows you to do an ISO view in the direction you prefer...

      Hm, the Sketchup function let you do this also.
      Rotate fairly into the wanted view and choose ISO and it will be aligned exactly into the prefered view.

      posted in SketchUp Tutorials
      H
      HPW
    • RE: Perfect Isometric View in Sketchup

      Is it not the same as menu:

      Camera\Standardviews\Iso

      ??

      posted in SketchUp Tutorials
      H
      HPW
    • RE: SimLab 3D PDF for SketchUp verison 3 released

      Hello,

      SimLab 3DPDF (now V3) is the plugin only:
      http://www.simlab-soft.com/3d-plugins/3D-PDF-from-sketchup-main.aspx

      SimLap Composer (now V2013) is the full product:
      http://www.simlab-soft.com/3d-products/simlab-composer-compare-editions.aspx
      There is a upgrade price for 2.X

      Regards

      Hans-Peter

      posted in Plugins
      H
      HPW
    • RE: SimLab 3D PDF for SketchUp verison 3 released

      Hello,

      On the download page you can read: The plugin is supported on SketchUp 8 ...

      So question: Is Sketchup 7 also supported/usable ?

      Regards

      Hans-Peter

      Edit: Got an answer by mail

      @unknownuser said:

      Yes the plugin should work with both SKP7 and 8 (free and pro)

      Best Regards,
      SimLab Soft

      posted in Plugins
      H
      HPW
    • RE: Sketchup 7 setting opacity with ruby?

      Oops, just noticed:

      
      	 material.alpha = 0.5
      
      
      posted in Developers' Forum
      H
      HPW
    • Sketchup 7 setting opacity with ruby?

      Hello,

      The API doc says:

      Color.alpha= is only for SketchUp 8.0 M1+

      Any other way to set opacity in Sketchup 7 with ruby?

      This does also not work:

      
      color_from_rgba = Sketchup;;Color.new(material.color.red, material.color.green, material.color.blue, 128) 
      material.color = color_from_rgba
      
      
      posted in Developers' Forum
      H
      HPW
    • RE: Getting and iterating scene list?

      This does what I want:

      
       model = Sketchup.active_model
       pages = model.pages
       pages.each {|page|
          pages.selected_page = page
          UI.messagebox("Scene; "+page.name)
          view = model.active_view
          new_view = view.zoom_extents
          status = page.update(33) 
          }
      
      

      But I have to press OK on the messagebox when scene-update has finished.

      Edit: Kernel.sleep does not work for that.

      posted in Developers' Forum
      H
      HPW
    • RE: Getting and iterating scene list?

      OK, things seems not so easy.
      The scene tab even does first appear after a autosart ruby has run, so no way to access the scenes via shortcut.

      Other idea: Scenes can store the camera loctation. So can a ruby calculate a new camera location for each scene and write the property.
      This would not update the screen or change the visible scene. But next time the scene-change is used it updates to the new location.
      And the new camera locations are stored for each scenes in onSave.

      What Propertys does ZoomExtents set? Is there a equivalent in ruby to calculate the values in the same way?

      Regards

      Hans-Peter

      posted in Developers' Forum
      H
      HPW