they changed my name
they changed my name

Reputation: 491

WPF: Is there a way to save the image in the Viewport3D?

I have some 3d points I have to plot and since as far as I know there isn't a chart library for C# that will do this easily, I thought the next easier way to do it would be to create the points in a viewport3d and save the image.

Upvotes: 2

Views: 889

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564383

If you're looking to do charts, you might want to consider just using a WPF chart control, such as Visifire.

Otherwise, you can use a RenderTargetBitmap to render the Viewport.

Upvotes: 1

Related Questions