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

    [Req] Viewporter

    Scheduled Pinned Locked Moved Plugins
    25 Posts 4 Posters 2.9k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • thomthomT Offline
      thomthom
      last edited by

      Just had an idea... maybe this can be done using Watermarks... Just not sure if it works when you move across different monitor resolutions...

      Thomas Thomassen — SketchUp Monkey & Coding addict
      List of my plugins and link to the CookieWare fund

      1 Reply Last reply Reply Quote 0
      • thomthomT Offline
        thomthom
        last edited by

        How do you display these gray bars in Fry render? I installed the demo to have a look. Closest thing I get is the 'Show safe frame', but that doesn't stick around for long. dissappears to fast. And I thought i would have displayed the frame based on the output resolution set in Fry....

        Thomas Thomassen — SketchUp Monkey & Coding addict
        List of my plugins and link to the CookieWare fund

        1 Reply Last reply Reply Quote 0
        • GaieusG Offline
          Gaieus
          last edited by

          Hi guys,

          I think it shouldn't be very hard to do in ruby (me saying this as an ultimate non scripter). Both the Film and stage plugin creates those grayed-out stripes on the sides allowing you to see what's really on the camera andthe CubicPanoOut.rb plugin which creates six images (and - on request - six scenes you can see these bands on) during the export.

          Then there is the FixAspectRatio.rb plugin that will remove these bands...

          Obviously, a "stripped down" version for something like this - just to make sure that what you see is what you get AND to be able to export really custom size images (either directly from SU or via a render app) could come in really handy.

          There are some renderers that can render exactly what you see on the SU window - thus making you able to make nice transitions for instance (obviously, Podium is one since it uses the SU viewport itself - but also Kerkythea which will, when the model is exported,put you into the same viewport with exactly the same aspect ratio and camera settings).

          Gai...

          1 Reply Last reply Reply Quote 0
          • thomthomT Offline
            thomthom
            last edited by

            Thanks for pointing out these plugins Gaieus. If they can be stripped down, (with permission, ofcourse) to only the function of displaying the bars, the only other thing would be to extract the V-Ray settings to get the aspect ratio. Though, being able to set this manually would work as well, and should probably be included so it's not V-Ray exclusive.

            Thomas Thomassen — SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 Reply Last reply Reply Quote 0
            • thomthomT Offline
              thomthom
              last edited by

              Well, this was very interesting. The grey bars are a feature built into SU. Just not exposed via the default UI. Makes things much easier.

              Thomas Thomassen — SketchUp Monkey & Coding addict
              List of my plugins and link to the CookieWare fund

              1 Reply Last reply Reply Quote 0
              • GaieusG Offline
                Gaieus
                last edited by

                Even better - I didn't know that (which is not surprising 😄 )

                Gai...

                1 Reply Last reply Reply Quote 0
                • free agentF Offline
                  free agent
                  last edited by

                  they're built in? how do u access them? and thom thom if show safe frame didnt work on fry render then perhaps its maxwell that does it. thanx for the attension 😄

                  http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                  1 Reply Last reply Reply Quote 0
                  • thomthomT Offline
                    thomthom
                    last edited by

                    Via the ruby API you can set the aspect ratio of the SU camera's. And when that aspect ratio doesn't match the viewport the excess spaces is masked by the translucent dark band.

                    As an example, if you open the Ruby console and paste the following line you see the effect.

                    Sketchup.active_model.active_view.camera.aspect_ratio = 2.2
                    

                    However, V-Ray doesn't seem to be aware of this. If you set V-Ray to render with an aspect of 2.2, you won't get what you see in SU if you set SU's aspect to 2.2. The SU viewport will zoom in, but V-Ray will still render the same image as before. To remedy this the V-Ray Camera's Zoom have to be set to the ratio of the SU viewport.

                    Example of getting What You See in SU Is What You get In V-Ray:
                    My monitor which I have SU open on is an 22" monitor with 1680x1050. With my current setup of toolbars the SketchUp viewport size is 1676x918. That's a ratio of ~1.8257
                    If I set V-Ray to have an output ratio of 2.2 (800x363) and I make SU's camera have an ratio of 2.2 by using the command

                    Sketchup.active_model.active_view.camera.aspect_ratio = 2.2
                    

                    I then have to set the V-Ray's camera's Zoom factor to 1.8257

                    What's annoying is that if you want to export the SU view when a custom aspect ratio is applied it won't take into account the new aspect ratio. It insists on using the ratio of the whole viewport. Fortunatly, this can be worked around by a ruby command which allows you to save out only the part you want and which will match perfectly when you overlay them in Photoshop.

                    Not sure if you can match things up if you do not use Physical Camera in V-Ray.

                    So, I think I have the formula, the problem is getting the V-Ray settings and to be able to adjust the V-Ray settings from the Ruby. That will take some tweaking as there's no documentation.

                    Thomas Thomassen — SketchUp Monkey & Coding addict
                    List of my plugins and link to the CookieWare fund

                    1 Reply Last reply Reply Quote 0
                    • free agentF Offline
                      free agent
                      last edited by

                      any progress? 😳

                      http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                      1 Reply Last reply Reply Quote 0
                      • thomthomT Offline
                        thomthom
                        last edited by

                        Afraid not. I have to reverse engineer the V-Ray data and I've not had time for that yet. The data isn't availible in a straight forward manner. 😞

                        Thomas Thomassen — SketchUp Monkey & Coding addict
                        List of my plugins and link to the CookieWare fund

                        1 Reply Last reply Reply Quote 0
                        • free agentF Offline
                          free agent
                          last edited by

                          thanx for your time 🤓

                          http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                          1 Reply Last reply Reply Quote 0
                          • thomthomT Offline
                            thomthom
                            last edited by

                            I made some progress yesterday though. Think I'm able to reliably read the V-Ray settings. Next is to see if I can write new settings as I need to adjust the Camera Zoom to sync V-Ray camera with V-Ray. Getting there.

                            Thomas Thomassen — SketchUp Monkey & Coding addict
                            List of my plugins and link to the CookieWare fund

                            1 Reply Last reply Reply Quote 0
                            • PixeroP Offline
                              Pixero
                              last edited by

                              Thomthom, I'd be interested in a solution as well.

                              1 Reply Last reply Reply Quote 0
                              • thomthomT Offline
                                thomthom
                                last edited by

                                I'll post an experimental version on this forum for people to test. Note that I develop against the latest VfSU release, 1.05.03 (SR1.5).

                                Thomas Thomassen — SketchUp Monkey & Coding addict
                                List of my plugins and link to the CookieWare fund

                                1 Reply Last reply Reply Quote 0
                                • free agentF Offline
                                  free agent
                                  last edited by

                                  wow thomthom, while your at it see if you can cook us up a "render region" 😄 silly that they dont have it all ready

                                  http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                                  1 Reply Last reply Reply Quote 0
                                  • PixeroP Offline
                                    Pixero
                                    last edited by

                                    Yeah, render region is something I reeeaaally would like to see for Vray for SU. I've asked for it several times and they only say it's added to the to do list. It would be a tremendous time saver for me.

                                    1 Reply Last reply Reply Quote 0
                                    • thomthomT Offline
                                      thomthom
                                      last edited by

                                      Got some bad news and some worse news.

                                      Bad news:
                                      It's harder to read the V-Ray settings than I thought. The location of the data moves depending on other setting. That mean I'd have to read a whole lot of more settings in order to work out the data I need.

                                      Worse news:
                                      There doesn't appear to be any way to change the V-Ray data. The attributes stored in the model is only read by V-Ray when the file is opened, but not while the file is open.

                                      How to deal with this:
                                      I will contact ASGVis and see if they're willing to share some information that might help. Also propose an API or something that will make it easier to script VfSU in the next version.
                                      In the meanwhile I'll create a calculator where you manually type in the aspect ratio you want and it'll give you a number for which you have to enter in the Zoom property for the Physical Camera in order to match the SU viewport with VfSU. It basically means a semi-automatic solution. 😞

                                      Thomas Thomassen — SketchUp Monkey & Coding addict
                                      List of my plugins and link to the CookieWare fund

                                      1 Reply Last reply Reply Quote 0
                                      • free agentF Offline
                                        free agent
                                        last edited by

                                        no gray bars?

                                        thanx for looking into it and good luck with contacting ASGvis, they should let you in your practically a moderator on that forum. 😉

                                        http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                                        1 Reply Last reply Reply Quote 0
                                        • thomthomT Offline
                                          thomthom
                                          last edited by

                                          Oh yea, you'll get the grey bars. That's no problem. Problem is automatically syncing V-Ray Camera with SU.
                                          I'll have something shortly. Got some time between this Christmas madness.

                                          Thomas Thomassen — SketchUp Monkey & Coding addict
                                          List of my plugins and link to the CookieWare fund

                                          1 Reply Last reply Reply Quote 0
                                          • free agentF Offline
                                            free agent
                                            last edited by

                                            thank you ☀

                                            Question: those grey bars, they indicate sketchups output? if so wouldnt just clicking "get view aspect" in vray's out put tab get the aspect of the gray bars?

                                            http:i167.photobucket.comalbumsu143FreeAgent84bug.gif

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 2 / 2
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement