Questions tagged [helix-3d-toolkit]

Helix 3D Toolkit is a collection of custom controls and helper classes for WPF.

Helix Toolkit is a collection of 3D components for .NET framework. Currently, it contains one component that adds functionality to the WPF 3D model (System.Windows.Media.Media3D namespace), and one WPF component that creates a similar scene graph for DirectX (based on SharpDX).

251 questions
1
vote
0 answers

Calculate new 3D camera position from azimtuh and elevation - Helix Toolkit

I do have my cameras LookDirection: -4,-2,-16 The camera's Position is the inverse of the LookDirection: 4,2,16 This represents a certain azimuth and elevation I guess. Now, I would like to change my camera that my new azimuth is the old azimuth +…
user2799180
  • 719
  • 1
  • 11
  • 29
1
vote
1 answer

Wireframe Box with Helix-toolkit.Wpf

I was wondering if it is possible to draw a wireframe box with helix-toolkit.wpf. If yes, how can I do that?
1
vote
1 answer

Helix Toolkit wpf Documentation

I am fairly new to WPF and Helix toolkit. I am trying to learn how to create a 3D model with Helix Toolkit WPF. However, I could not find any documentation about Helix objects, methods, and properties. So, I was wondering if any documentation exist…
1
vote
1 answer

How to load STL file in Helixtoolkit.SharpDX?

I'm using Helixtoolkit in my c# WPF project. And It seems my model is so huge that the performance is very bad.(I loaded a human skull model). Here is the way I load the model ModelImporter import = new ModelImporter(); _modleGroup =…
1
vote
2 answers

Unable to load .obj files with Helix Toolkit

I'm running into an issue where I can't load 3D .obj files into my test app. I get the following exception: System.NotSupportedException: 'No imaging component suitable to complete this operation was found.' COMException: The component cannot be…
The Whether Man
  • 362
  • 5
  • 21
1
vote
1 answer

3d visualize tools in WPF

I am getting the surface shown in the picture that i am attaching below ,I want triangle with the same color and texture Could you please guide me on the same. and one more thing ,This is because the triangles are not oriented consistently which…
1
vote
0 answers

Turn a model into a specular light source

I have 2 models. One is a vehicle, the other is a series of tube lights. I want to be able to see only the specular reflections of the tube lights on the vehicle. How can I turn the model of lights into a light source? I tried giving it an…
Brandon
  • 1,058
  • 1
  • 18
  • 42
1
vote
1 answer

Helix toolkit, getting a new rotation vector

I have a 6 axis robot. I am trying to get each axis to move independently. The robots axis all move correctly when axis one is at its origin angle, but when it has been modified all other axis move incorrectly. They retain the correct point of…
Nostromo
  • 13
  • 5
1
vote
1 answer

How to resize a FileModelVisual3D in a helix Viewport with Codebehind WPF

i am a real newbe in the world of helixtoolkit and Graphics 3D. What i make: I have the homework to code a programm which lets you decorate a christmastree with different types of decoration. One type of decoration is a candle. The problem. The…
1
vote
1 answer

How to create 3D plane from lines

I'm using Helix Toolkit with WPF, and I want to take a bunch of lines and turn them into a surface. To clarify, I have a group of 3-dimensional curves, and I want to get the curved blade that would result from all of these lines. (The lines…
Eliza Bennet
  • 179
  • 4
  • 17
1
vote
1 answer

Ray hit testing with Model3D

I need to test ray-model intersections. I know that there is a build in method to test a ray intersection with Viewport3D ( https://blogs.msdn.microsoft.com/wpf3d/2009/05/18/3d-hit-testing/ ) I can't find any way to use it to test a Model3D. I need…
wavelet
  • 41
  • 4
1
vote
1 answer

How to parallelize 3d model creation?

Bit of a special case here, because I'm using a library called helix-toolkit but bear with me. The thing is I would like to parallelize the creation of model objects in my code using a backgroundworker. I know that there is a big issue with…
1
vote
0 answers

How to link two differents cameras in wpf 3D

I have a project in wpf 3D / Helixtoolkit with two differents viewport, displaying two different but similar objects. I have to implement a button that can "link" the two cameras of the two viewports. So when I'm changing the view in one, the other…
1
vote
0 answers

WPF Helix 3d how to binding 'Items' to BillboardTextGroupVisual3D

I want to bind items in BillboardTextGroupVisual3D in the XAML and I also check the source code about the Items's DependencyProperty as follows public static readonly DependencyProperty ItemsProperty =…
Sheng-Fang
  • 21
  • 4
1
vote
1 answer

How do I get a Controls.ItemsControl in an Form

I have a Controls.ItemsControl (actually a HelixViewport3D) and would like to add it inside a Forms.UserControl. I already tried this.Controls.Add(new HelixViewport3D()); Where this is a derivative from UserControl however this resulted in an…
Thijser
  • 2,625
  • 1
  • 36
  • 71