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

Helixtoolkit Rotate GeometryModel3D using mouse in all 3 axis

The goal is to measure a GeometryModel3D boundary (width, depth, height) but in some situations the model orientation is not correct so I want to allow the user to correct the orientation using the mouse with an interface similar to the camera…
Ivan
  • 21
  • 3
2
votes
1 answer

Helix Viewport continues zooming while paused at a breakpoint

I am running a Helix viewport and am catching a mousewheeled event with previewmousewheel to run a method. When debugging some changes I made to my methods I found out that when I set a breakpoint (anywhere between the catching of the…
2
votes
2 answers

Create Quaternion from Acceleration Data

So I have an acceleration sensor that gives me acceleration data. The device is currently resting at a certain position, so the data looks like this (with some noise per axis): ACCELX = 264 ACCELY = -43 ACCELZ = 964 Then there's a 3D model…
draconigen
  • 93
  • 1
  • 12
2
votes
1 answer

How to save 3D Model as .PNG

I have a program, and when I press the button "add Catalog" I can add a catalog which contains many .obj files (3d models). When I select the directory of the catalog I need to save the .obj as .png in a particular folder. I am using helixtoolkit…
user8833018
2
votes
1 answer

Converting .obj object into XAML using HelixToolKit?

I am new to WPF(3D) and HelixToolKit, I want to convert my .obj file into XAML code, I searched the entire library for the conversion of .obj to XAML but I didn't find anything to that, From which class file I can get this conversion code any idea?
Smits
  • 195
  • 1
  • 2
  • 12
2
votes
1 answer

Displaying tooltip on mouse hover of a 3d object

I'm using Helix to display a simple object as follow How do I display a tooltip on mouse hover of the teapot? Thanks
HuyNA
  • 598
  • 3
  • 19
2
votes
0 answers

WPF with Helix toolkit, animate with code-behind?

I am new to WPF, and am trying to build a 3d viewport with helix toolkit. The viewport, grid etc show up as expected, And I add a simple tube. Now, i want to use a new function to update the Transform of the tube, based on user input, but I cannot…
anti
  • 3,011
  • 7
  • 36
  • 86
2
votes
1 answer

Transparencyof Spheres not working on all sides of my Cube - Helixtoolkit

first question here - hopefully I got the formatting done right. So I'm trying to create a 3D LED cube with 512 LEDs (8x8x8) in WPF with the Helix-Toolkit in Visual Studio 2015. I'm new to the whole 3D stuff in WPF so I might have some…
benjamin
  • 123
  • 1
  • 8
2
votes
1 answer

How to automatically adjusting camera LookDirection in WPF Viewport3d?

I adding to my Viewport3d a model (STL file) using HelixToolKit's ModelImporter function, but first nothing show up. To see added 3DModel I have to do zoom out. My question is, are there any way to do dynamically/programmatically zoom out or rotate…
Ardahan Kisbet
  • 641
  • 1
  • 13
  • 33
2
votes
3 answers

Rotate and translate an object

I need to rotate and translate an object. I have a problem with that, I can only do one of them. I use this code: RotateTransform3D myRotate = new RotateTransform3D(new AxisAngleRotation3D(new Vector3D(0, 0, 1), Convert.ToDouble(180)), new…
Imrik
  • 674
  • 2
  • 14
  • 32
2
votes
0 answers

Helix PanormaCube3D doesn't ignore light

I'm using PanormaCube3D as a skybox for a scene I'm creating. If the lights are off and Ambient is set to white, It works flawlessly. But as soon as there are more lights added, the skybox is lit and has distinctive brighterr and darker sides. Hwo…
user2741831
  • 2,120
  • 2
  • 22
  • 43
2
votes
1 answer

LinesVisual3D not visible behind opaque objects

I have a problem that all of my LinesVisual3D are not visible, when placed after an object with semi-transparent material (lowered alpha channel). All other 3D objects are visible when placed behind, but the lines are not. What is more, when the…
Lemur
  • 2,659
  • 4
  • 26
  • 41
2
votes
0 answers

How to plot 3D colored points with Helix toolkit

I create a simple 3D viewer with Helix toolkit. I want to plot 3D points which is colored. I referred to the sample project "SimpleDemo" which is contained in the Example folder (HelixToolkit.Wpf.SharpDX). This is my XAML:
kazuoni
  • 21
  • 1
  • 4
2
votes
0 answers

Helix - click coordinates on object inside HelixViewport3D

I would like to know the coordinates of the point in the HelixViewport3D where I clicking. My task is: 1) RectangleVisual3D as some surface. 2) Clicking on this surface adding 3d-object under mouse pointer. I found =>this<=, but could not develop…
2
votes
0 answers

HelixVisual3D not updating after creation on helix-toolki

I'm need to show a circular torus in a helix-toolkit viewport. The closest option I found was the HelixVisual3D, but it has open ends. So I tried to create my own class to draw it, with a HelixVisual3D and two thin cones to close the ends. I used…
rbasniak
  • 4,484
  • 11
  • 51
  • 100
1 2
3
16 17