Tagged Questions
The viewport3d tag has no wiki summary.
4
votes
3answers
1k views
Is there a secret trick to force antialiasing inside Viewport3D in Windows XP?
Under Windows XP WPF true 3D content (wich is usually displayed using the Viewport3D control) looks extremely ugly because it is by default not antialiased as the rest of the WPF graphics are. ...
2
votes
2answers
378 views
Place an Image into ViewPort3D in wpf
I am having problem in displaying th Image in viewport3d of wpf.
<Grid>
<Image Source="G:\Demo\virtualization\virtualization\2.jpg"/>
<Viewport3D Name="mainViewport" ...
2
votes
1answer
113 views
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 ...
1
vote
2answers
105 views
1
vote
0answers
73 views
Threading 3d models in Windows Presentation Foundation
Is there a tutorial I can look at for Windows Presentation Foundation in using multi-threading to create a model in a non UI-thread and add it to the 3D viewport in the UI-thread?
I'm been having ...
1
vote
0answers
175 views
SlimDX rendering a visual to a bitmap
I want to render a viewport3d visual to an image using hardware rendering. How could I do that using SlimDX? I'm using WPF & VB.NET 4.0 and SlimDX. Any tips will help, thanks in advance. :)
Here ...
1
vote
1answer
262 views
3D is not rendering in WPF Application
I am trying to render 3D object using the below code.
But when I run the application, nothing is displayed. It seems to be blank. Am I missing anything?
<Page ...
1
vote
2answers
528 views
Useful lighting of a single-colored 3D object in a WPF Viewport3D
I have a 3D Modell of a house, where the roof is invisible so that the rooms can be seen
(like here)
But (for now) I have no textures and each surface has the same color, e.g.,
var myMaterial = new ...
1
vote
1answer
210 views
Performance problem when applying a RenderTransform to a Viewport3d in WPF
I have implemented zooming and panning in my WPF app using a RenderTranform combining scaling and translations.
Everything is peachy with bitmaps, text, graphic paths, shapes and more.
As soon as I ...
1
vote
0answers
208 views
WPF FlowDocument, Viewport3D, Adobe 3D PDF
In my little test application i created a FlowDocument instance and added a simple Paragraph containing some text.
In the second step i added a BlockUIContainer containing a Viewport3D to the ...
1
vote
1answer
740 views
WPF - Render text in Viewport3D
I want to present up to 300 strings (just a few words) in a Viewport3D - fast! I want to render them on different Z positions and zoom in and out fluently.
The ways I have found so far to render text ...
1
vote
1answer
419 views
Problems with 3D WPF
I started to learn some 3D in WPF today and I copied some simple examples (planes) into my XAML, and they all worked. However, when I adjusted the camera's and the plane's coordinates to meet my ...
1
vote
1answer
537 views
WPF 3D Gradientbrush problem
The main problem is in LinearGradientBrush. It fills triangle in solid red. What's wrong? I have tried almost the same code with 2d shapes. It worked perfectly.
<Window ...
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
15 views
How to rotate camera in ViewPort3D using mouse in WPF?
I was able to set the position and direction of the perspective camera placed in the viewport3d directly in XAML.
But i would like to know how can i rotate the camera using the mouse input.
I would ...
0
votes
1answer
36 views
Can I stream the contents of a window to another control in WPF?
I have a Grid control which contains a Viewport3D amongst some other things and I would like to have a "live preview" of this Grid's contents drawn in another control using WPF. Can anyone tell me ...
0
votes
1answer
58 views
Binding color to Solidbrush.color in c# code
I have a class Cell looking something like this:
public Color color{get { return colorr; }
set { colorr = value;
if (this.PropertyChanged != null){
this.PropertyChanged(this, new ...
0
votes
0answers
29 views
Rotating the modelvisual3d
I have some question to ask. I want to animate my 3d imported object from sketchup to expression blend. I tried different technique that I found but all were failed. Can anyone here please help me ...
0
votes
0answers
121 views
Viewport3D in Silverlight
I have developed one application in WPF with ViewPort3D and load xaml files for 3D graphics.
In WPF, I have used ViewPort3D control to render 3D, is there any equivalent control exists in ...
0
votes
1answer
37 views
Is there something like ItemsControl for use inside a Viewport3D?
I have a Viewport3D with a few items in it, and I want to add additional items to it that are from a collection that can be data bound to. Is there something like that, that would allow code like ...
0
votes
0answers
32 views
ViewPort3D to XDocument
I am trying to manipulate a viewport3d using linq. Therefore I parse a string to a XDocument.
My problem is I am using a 3rd part tool to read a 3ds (3D-Geometry) file which is allready 29 MB. What I ...
0
votes
0answers
67 views
InvalidOperationException WPF on Viewport3d
I have a WPF application in which I am trying to update a viewport3d. I had gotten this exception before and was able to solve it with the Dispatcher.BeginInvoke, but I can't figure out how to use it ...
0
votes
0answers
494 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
0answers
106 views
Make a PointLight in ViewPort3D around a sphere
I'm creating a simulator of our solar system in a 3D app using the Viewport3D control in WPF. I get to the point of having a sphere as "Sun" at (0, 0, 0) and a "Earth" quite far from it. When I'll add ...
0
votes
1answer
84 views
0
votes
1answer
227 views
Disable face culling in WPF
I'm starting experimenting with WPF 3D rendering, and one of the first problems I'm facing, is how to disable face culling.
I know how to do that in DirectX and OpenGL, but I can't find a way to do ...
0
votes
1answer
240 views
Viewport3D ModelVisuals3D not visible when inside Canvas
If I put viewport3D inside Canvas my viewport3D is not visible anymore. If I remove Canvas then Viewport3D is visible again. What I'm doing wrong?
<Canvas Width="900" Height="524">
...
0
votes
2answers
366 views
A question about WPF. Size in Viewport3D
<Window x:Class="Viewport2DVisual3DExample.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Button on 3D"
...
0
votes
1answer
113 views
“GeometryHitTestParameters' HitTestParameters are not supported on 'Viewport3DVisual” error from the new SDK?
I was part of a team that developed a Surface application during the summer. I was set to do some minor changes to this application now, but got errors that were not present last time the exact same ...
0
votes
1answer
2k views
Viewport 3D WPF C#
Can you please show how to set and save the background color of the viewport3D. Whenever I save no background is visible only model, I tried the grid but that gets everything in the grid? Any help ...
0
votes
1answer
430 views
Adding a child to Viewport3D asynchronously gives “This API was accessed with arguments from the wrong context.”
When I try to add 3D-content to a Viewport3D, asynchronously, this results in "This API was accessed with arguments from the wrong context." in a TargetInvocationException.
The 3D-content is ...