Tagged Questions
The modelvisual3d tag has no wiki summary.
2
votes
1answer
334 views
Make a 3D model transparent
How can I make a specific 3d model transparent? Is it as simple as changing the opacity of the model's material?
I tried the following:
SolidColorBrush br = (SolidColorBrush)matDif.Brush; //matDif = ...
1
vote
2answers
638 views
ModelVisual3D vs Model3DGroup
Is there any disadvantage of using ModelVisual3D over Model3DGroup. How much can the resource/performance impact possibly be?
ModelVisual3D gives me much more than Model3DGroup does but AFAIK ...
1
vote
3answers
1k views
WPF 3D - Detirmine whether a ModelVisual3D is being clipped inside it's Viewport3D
I have a cube rendering inside a Viewport3D and i need to know a way to find out whether ALL of the cube is visible to the user.
Edit:Just to be clear,..I'm not talking about clipping because of ...
0
votes
0answers
484 views
WPF ViewPort3D user control with ModelVisual3D property binding?
I’m building a user control that has a ViewPort3D. I want to be able to update the view port with a bound property of ModelVisual3D (through an exposed method accepting data that is used to create the ...
0
votes
2answers
217 views
WPF 3D :check if a cube can completely contain another cube
I am working on drop & drop in 3D. I have created 3D spaces (rooms) with walls (cubes) which act as place holders for objects (assume a smaller cubes) being dropped.
How do I go about figuring ...
0
votes
1answer
1k views
WPF 3D - Fit ModelVisual3D into the camera's field of view?
I have a cuboid who's dimensions are imported from XML so i need to be sure that no matter what the size of the model, the camera can always see all of it. This is for preview purposes. I'll likely ...