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
2 answers

C#, display and navigate structural 3D FEM model (helix-toolkit, SharpDX?)

Hello! I am trying to implement a simple way to display the deformed shape of a beam. I found HelixToolkit that offers perfect tools, but I can't find the way to display different tiles of the same mesh with a different colour, or gradient. I found…
max_s
  • 83
  • 1
  • 8
1
vote
2 answers

Using mouse wheel click as HelixViewport3D objects RotateGesture doesn't work as intended in WPF

I'm building a WPF app that has some 3D objects in view and the view should be able to be panned and rotated. I'm using HelixViewport3D for this from the HelixToolkit NuGet pakcage, HelixToolkit.Wpf library. The view should be rotated by holding…
Fish
  • 91
  • 7
1
vote
1 answer

HelixToolkit ZoomExtentsWhenLoaded and Binding

I am using HelixToolkit to display 3D Models in WPF. The loading works fine but the model is not zoomed properly though I am using ZoomExtentWhenLoaded="True" (I expect it to be zoomed to fit into my window). The Model is provided in the ViewModel…
tabina
  • 1,095
  • 1
  • 14
  • 37
1
vote
0 answers

How to update wireframe without WPF button click?

I'm developing a Windows Form application with WPF User Control embedded in the WF. If I add a button and execute my userControl.DrawWireFrameCube(); My ViewPort3D get updated. I'm using Helix 3D Toolkit. But If I call my method from my…
Ares
  • 29
  • 4
1
vote
1 answer

Microsoft WPF vs SharpDX WPF edges

This picture is a face draw with Microsoft wpf on the left and the same with sharpdx wpf on the right. The edges of the sharpdx face are less smooth. This is all the SharpDX code I use in VB.net without XAML. What do I miss? Imports…
1
vote
1 answer

helix3dtoolkit (sharpdx WPF): LineGeometryModel3D material changed need a camera move to be apply

I'm programming a 3d viewer with Helixtoolkit sharpdx (WPF). Basically, I add on the scene a stl shape. On this shape, I add some outlines made of LineGeomtryModel3D. At runtime, when I select a model from list, I apply a new Color to the outline: …
Benjamin
  • 11
  • 1
1
vote
1 answer

How to use same HelixViewport3D screen two different form c#

I want to see the HelixViewport3D 3D area I designed in form 1 with a different camera angle in form 2. I want to look at the production line that I can look at in the first form from the angle I want at the same time in the 2nd Form and the…
1
vote
1 answer

Select by name HelixToolkit

INTRODUCTION I'm implementing a 3D viewer in a WPF, in the viewer I need to be able to select the object and identify them by their name. PROBLEM I can select objects with the mouse without problem but I cannot get the object name, to test the app I…
DomCR
  • 533
  • 4
  • 19
1
vote
1 answer

how to add user data to a model3d in helix3d toolkit

I can show 3d GeometryModel3D objects using Helix3d toolkit. Using HitTest I can select a particular object and show its tooltip. Is there anyway to attach the user data into 3d object when creating?
beewest
  • 4,486
  • 7
  • 36
  • 63
1
vote
0 answers

Is it possible to get vertex data from model3D using helixtoolkit?

I'm using helixtoolkit-3d to display .obj 3d model and I get the model like that: ObjReader CurrentHelixObjReader = new ObjReader(); MyModel = CurrentHelixObjReader.Read("D:/model.obj"); I want to get an array of vertex coordinates from model3D…
kme
  • 11
  • 1
1
vote
0 answers

Create Image from HelixViewport3D

What would be the correct way to create a Bitmap (eventually I want to save a jpg) from the current view in a HelixViewport3D? I'm currently using this (simplified) class as a DataContext to load a STL File to the ViewPort: public class StlFile :…
Romano Zumbé
  • 7,893
  • 4
  • 33
  • 55
1
vote
2 answers

How do you rotate a 3D model using HelixToolkit?

I need some help rotating a 3D model in a WPF project on visual studios. I have imported the model in through the use of the helix toolkit. But I can not find any example of how to rotate the 3D model online. I've found some C# and xaml examples but…
Arash
  • 13
  • 1
  • 5
1
vote
1 answer

How to change the position of cutplane? HelixToolkit.Wpf

I successfully cut an STL model, but I can't change the position of the cut plane. Structure: Viewport -> CuttingPlaneGroup -> CuttingPlanes -> Plane3D. The STL model is in the CuttingPlaneGroup. Does anyone know how to dynamically change the cut…
Niko Leben
  • 11
  • 5
1
vote
0 answers

WPF Displaying 3D object in original colour

I have displayed the 3D object by referring the following Link Display 3D Model using Window Presentation Foundation .Everything is working fine except the object is displaying in plain blue.can any one help me out to display it in the original…
Sribin
  • 307
  • 4
  • 16
1
vote
0 answers

Create (or extrude) a 3D Polygon from a 2D Polygon - C# WPF Helix Toolkit

I'm working on a WPF project that displays a 2D city area. I have 2D polygons that represent buildings. In order to have a 3D view, I need to transform these buildings into 3D polygons, by "extruding" them from the base area. I chose Helix Toolkit,…