[Req] Viewporter
-
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.
-
Even better - I didn't know that (which is not surprising )
-
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
-
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 commandSketchup.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.
-
any progress?
-
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.
-
thanx for your time
-
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.
-
Thomthom, I'd be interested in a solution as well.
-
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).
-
wow thomthom, while your at it see if you can cook us up a "render region" silly that they dont have it all ready
-
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.
-
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. -
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.
-
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. -
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?
-
Nope. When you choose Export 2D from SketchUp it will save everything you see in the viewport including the grey bars. (I don't understand why. At least there could have been an option for this, but no.) But fear not. I'll make a function for that as well. The output I got from that matched perfectly when I plonked it into Photoshop.
And VfSU doesn't seem to be aware of this as well. Not sure if ASGVis developers have noticed this feature in the API. If they did I would have thought that the render output would match automatically when you changed the SU aspect.
-
First edition of a sync tool: http://www.sketchucation.com/forums/scf/viewtopic.php?f=180&t=15491
Advertisement