sketchucation logo sketchucation
    • Login
    1. Home
    2. hermannausowl
    3. Posts
    ℹ️ 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 17
    • Posts 52
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Dynamische Komponenten in 2 Richtungen (Bohrungen)

      Bist du schon weiter gekommen?

      Wenn nein, empfehle ich dir dich mit dem Programmieren von einem kleinen Plugin zu beschäftigst.
      Es ist gar nicht so schwer und gibt dir wesentlich mehr Flexibilität.

      Zum Einlesen solltest du dir das Buch "3D-Modellierung mit Google SketchUp für Kids" kaufen.
      Ab Seite 359 wird eine kleine Einführung in die Programmierung gegeben.

      posted in Deutsch
      H
      hermannausowl
    • RE: Fixed container position in html web dialog

      Thank you very much, it's works fine. 😄

      posted in Developers' Forum
      H
      hermannausowl
    • Fixed container position in html web dialog

      I create a new html menu with a css that I use in SU with ruby-elements.
      The web dialog works in the combination of SU 2015 and Safari, Chrome and Opera but in the combination of SU 2008 and IE the fixed positions of the containers aren't fixed.
      Do you have any ideas how I can fixed the problem?


      html + css

      posted in Developers' Forum
      H
      hermannausowl
    • Plugin Büromöbel

      Wir haben unser Plugin zur Planung von Büromöbeln auf die SU Version 2015 umgestellt.

      Hier der Link zum Download:

      http://www.momo-moebel.de/index.php?id=55

      posted in Deutsch
      H
      hermannausowl
    • RE: SketchUp 2014 online

      Danke für die Tips.

      posted in Deutsch
      H
      hermannausowl
    • RE: SketchUp 2014 online

      Unser Plugin ist nicht kompatibel mit der neuen Version.

      posted in Deutsch
      H
      hermannausowl
    • RE: Plugin office furniture

      It is important to keep the folder structure in the Plugins folder.


      Verzeichnis.jpg

      posted in Woodworking
      H
      hermannausowl
    • RE: Plugin office furniture

      We have the plugin adds a module kitchen elements.

      posted in Woodworking
      H
      hermannausowl
    • Update mo_mo Möbelplaner

      Neben vielen Verbesserungen im Detail haben wir unser Plugin um ein Modul Küche ergänzt.
      Es soll allen Interessierten einen einfachen Einstieg in die Küchenplanung ermöglichen.
      Viel Spass beim Ausprobieren. Ich würde mich über ein Feedback freuen. 😄

      http://www.momo-moebel.de/service/software-downloads/

      posted in Deutsch
      H
      hermannausowl
    • RE: Repair of a roller of an office chair

      If so, I'm really jealous.
      On the Cube 3D, ordered in Dusseldorf, I wait more than a half a year and the payment in advance.

      posted in Gallery
      H
      hermannausowl
    • RE: Why I have to say goodbye

      I also understand that Trimble has to earn money.
      I know many companies who use "make" a way.
      They are not interested in "Layout" and other extensions.
      These companies would be willing to pay a reasonable amount but not $ 500th
      Why Trimble provides no corresponding model?

      posted in Developers' Forum
      H
      hermannausowl
    • RE: Erfahrung mit SU 2013

      Der einfachste Weg ist im Verzeichnis Plugins die Startdatei "ABSBMP_mo_mo_moebel_ext.rb" in ...rb_ zu ändern.

      posted in Deutsch
      H
      hermannausowl
    • RE: Erfahrung mit SU 2013

      Im Fenster "plugins" findest du unter mo_mo_moebel das Auswahl- und Werkzeugmenü zum Öffnen der beiden HTML-Menüs. Abgesehen von unseren eigenen Programmierfehlern sollte das Plugin laufen. 😛
      Bitte meldet euch, wenn Fehler auftreten.

      [img]momo_menue.jpg[/img]

      posted in Deutsch
      H
      hermannausowl
    • RE: Erfahrung mit SU 2013

      Jo-ke,

      wo liegen deine Probleme mit unserem Plugin?

      posted in Deutsch
      H
      hermannausowl
    • RE: Plugin office furniture

      We work with html menus and toolbar not.

      posted in Woodworking
      H
      hermannausowl
    • Lengths over trigonometric

      How can I determine the lengths over trigonometric functions by program?
      [img][attachment=0:3et1o13z]<!--%20ia0%20-->Dachschraege-Szene%2001.jpg<!--%20ia0%20-->[/attachment:3et1o13z][/img]


      Dachschraege-Szene 01.jpg

      posted in Developers' Forum
      H
      hermannausowl
    • RE: Find Group name

      I find a way.

           # {Ecken von ausgewaehlten Elementen ermitteln()
            #
            def ecken_ermitteln
      
              model         = Sketchup.active_model
              entities      = model.active_entities
              auswahl       = model.selection  
              context       = auswahl.first       
              MoMo;;g_name  = context.name                       
              MoMo;;teile   = entities.add_group auswahl
              model.selection.add(MoMo;;teile)
              auswahl       = model.selection
           
              e             = auswahl.at(0)
              bounds_a      = e.bounds 
              MoMo;;x_mass  = bounds_a.width
              MoMo;;y_mass  = bounds_a.height 
              MoMo;;z_mass  = bounds_a.depth
              MoMo;;i_li    = bounds_a.corner(2)[0] if MoMo;;tuer_c_o_li == 0
              MoMo;;i_re    = bounds_a.corner(3)[0] if MoMo;;tuer_c_o_re == 0
      
              # corner(n) = 
              # 0 = [0, 0, 0] (left front bottom)
              # 1 = [1, 0, 0] (right front bottom)
              # 2 = [0, 1, 0] (left back bottom)
              # 3 = [1, 1, 0] (right back bottom)
              # 4 = [0, 0, 1] (left front top)
              # 5 = [1, 0, 1] (right front top)
              # 6 = [0, 1, 1] (left back top)
              # 7 = [1, 1, 1] (right back top)
      
            end
      
            # {S-Tuer oeffnen/schliessen()
            #
            def schiebetuer_open_close_li_gen
              model     = Sketchup.active_model    
              entities  = model.active_entities        
              status    = ecken_ermitteln           # siehe oben
              if MoMo;;g_name == 'Schiebetuer_li'
                x2  =  MoMo;;x_mass / 3 * 2
                x1  =  x2 if MoMo;;tuer_c_o_li == 0   
                x1  = -x2 if MoMo;;tuer_c_o_li == 1            
                a1  =   0 if MoMo;;tuer_c_o_li == 0
                a2  =   1 if MoMo;;tuer_c_o_li == 1        
                t1  = Geom;;Transformation.translation [x1,0,0]       
                entities.transform_entities t1, MoMo;;teile    
                MoMo;;tuer_c_o_li = 1 if a1 == 0           
                MoMo;;tuer_c_o_li = 0 if a2 == 1   
              else
                UI.messagebox 'Es wurde eine falsche Tuer ausgewaehlt.'
              end         
              status        = MoMo;;teile.explode         
            end 
            def schiebetuer_open_close_re_gen
              model         = Sketchup.active_model
              entities      = model.active_entities    
              status        = ecken_ermitteln           # siehe oben
              if MoMo;;g_name == 'Schiebetuer_re'        
                x2  = MoMo;;x_mass / 3 * 2
                x1  = -x2 if MoMo;;tuer_c_o_re == 0   
                x1  =  x2 if MoMo;;tuer_c_o_re == 1         
                a1  =   0 if MoMo;;tuer_c_o_re == 0
                a2  =   1 if MoMo;;tuer_c_o_re == 1        
                t1  = Geom;;Transformation.translation [x1,0,0]      
                entities.transform_entities t1, MoMo;;teile    
                MoMo;;tuer_c_o_re = 1 if a1 == 0           
                MoMo;;tuer_c_o_re = 0 if a2 == 1   
              else
                UI.messagebox 'Es wurde eine falsche Tuer ausgewaehlt.'
              end               
              status        = MoMo;;teile.explode         
            end   
      
      posted in Developers' Forum
      H
      hermannausowl
    • RE: Find Group name

      How do I find the name of the selected door?

      posted in Developers' Forum
      H
      hermannausowl
    • RE: Find Group name

      Thanks for the quick reply.
      With a method I want to open the doors and needed to know whether it is the left or right door.

      posted in Developers' Forum
      H
      hermannausowl
    • Find Group name

      How can I find the name of the active group by program?

      http://www.momo-moebel.de/fileadmin/service/Szene.tiff

      posted in Developers' Forum
      H
      hermannausowl
    • 1
    • 2
    • 3
    • 1 / 3