Grasshopper

algorithmic modeling for Rhino

C# - Animation with viewCaptureToFile - no meshes/surfaces visible

Hi,

I'm trying to make a little animation by using the viewCaptureToFile command in a C# component.

Problem:

Moved (animated) geometries are not visible !


Here's the code:



private void RunScript(string filePath, bool enable, ref object A)
{

string scripting = "!_-ViewCaptureToFile\n\"" + filePath + "\"\n";
scripting += "Width=712\n";
scripting += "Height=534\n";
scripting += "DrawGrid=No\n";
scripting += "DrawWorldAxes=No\n";
scripting += "DrawCPlaneAxes=No\n";
scripting += "TransparentBackground=No\n";
scripting += "_enter";


if (enable == true) {

Rhino.RhinoApp.RunScript(scripting, false);
}

A = scripting;

} _origwidth="1600"

Views: 2482

Attachments:

Replies to This Discussion

Hallo Friedrich,

try this script: http://www.grasshopper3d.com/forum/topics/animation-of-timer?commen...

it generates a picture on every change of a parameter. If this is working for you...i show you how it works.

It might be, that when you're calling the Rhinocommand it only captures the Rhino content...not the GH stuff, that is attached to the display pipeline. However this script is calling RhinoCommon and it captures also GH content.

I do have another version, where you can disable the world axes, grid and so on...i can try to find it and send you that also...if the method from the other post works for you.

Cheers

FF

Hi Florian,

works perfectly! For my personal progress: Is there any possibility to get the code ? :)

Thx

F

I'm happy, that it works 4 you...have found a much more updated version of this script on my pc...take a look at that (attached)

If you need some extra things, i can integrate them, just tell me. Here is the important part of the script:

 Rhino.Display.RhinoView rv = (string.IsNullOrWhiteSpace(view)) ?

                doc.Views.ActiveView :

                 doc.Views.Find(view, false);

if(rv==null)

    return;

rv.CaptureToBitmap(false, true, false).Save(filepath, format);

See the SDK for more info: http://4.rhino3d.com/5/rhinocommon/html/AllMembers_T_Rhino_Display_...

Attachments:

Thanks Florian, it worked well!

But it seems like there are dependencies to the order of creation of GH-Components.

This has influence to the order of redrawing geometries in GH/Rhino.

The program:

Here the manual capture and the automated:

Geometry components created after the capture components are not visible.

So the viewCaptureToFile Script works as well as the CaptureToBitmap method!

Cheers

F

Hi Friedrich,

I didn't know that, but it's interesting. It definitely has to do with how the sdk is built. You might get around by Cut and Paste the script once you have everything on the screen, that you're going to capture.

I think you can report this to Steve or Dale at McNeel, this should be fixed.

Cheers

FF

Hello,

Did you find out solution for your above view capture issues....

I am facing similar problem

Hey!

I don't know if you are still stuck on this point (I guess not but who knows) but I faced a similar issue today : by using "viewcapturetofile" through a GH VB Script, only part of the geometries where actually visible on the resulting image. 

Found a workaround : call the command twice. Should the first image be crappy, the second which overwrites the first is always good for me.

Cheers

[In VB.NET]

ScreenshotName = path & "\" & Name & "_Image" & ".jpg"
myDef = " -ViewCaptureToFile " & Chr(34) & ScreenshotName & Chr(34) & " _Scale=1 _TransparentBackground=True _Width=2180 _Height=1024 _Enter"
RhinoApp.RunScript(myDef, True)
RhinoApp.RunScript(myDef, True)

RSS

About

Translate

Search

Photos

  • Add Photos
  • View All

Videos

  • Add Videos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service