For bugs and new features, use the issue tracker located at GitHub.
Also try the chat room!
Viewport2DVisual3D
DuaneTNM wrote at 2011-08-25 03:21:
Are there any examples showing Viewport2DVisual3D with HelixView3D. Can this type of 2D on 3D be achieved with the HelixToolKit.
Thanks
objo wrote at 2011-08-25 07:44:
Hi DuaneTNM, sorry there is no example using Viewport2DVisual3D. But I don't think there should be any problem to use it with the controls in HelixToolkit!
mipa87 wrote at 2011-08-30 17:42:
First, thank you for this project.
How can I use common WPF controls (buttons, sliders) with this toolkit (with supporting button click, slider value changed and etc.)? I'm using Viewport2DVisual3D for this, render is ok, but events are not triggered. What I'm doing wrong?
Thanks
Here is my code:
<helix:HelixView3D
IsHeadLightEnabled="True"
ZoomToFitWhenLoaded="True"
ShowFrameRate="True"
ShowFieldOfView="True"
ShowCoordinateSystem="True"
MouseDown="HelixView3D_MouseDown"
Name="helixView3D"
IsHitTestVisible="true">
<helix:HelixView3D.Camera>
<PerspectiveCamera
Position="0, 0, 4"/>
</helix:HelixView3D.Camera>
<ModelVisual3D>
<ModelVisual3D.Content>
<Model3DGroup
x:Name="group">
<DirectionalLight
Color="White"
Direction="-1, -1, -3"
/>
</Model3DGroup>
</ModelVisual3D.Content>
<Viewport2DVisual3D>
<Viewport2DVisual3D.Geometry>
<MeshGeometry3D
Positions="-1,1,0 -1,-1,0 1,-1,0 1,1,0"
TextureCoordinates="0,0 0,1 1,1 1,0"
TriangleIndices="0 1 2 0 2 3"/>
</Viewport2DVisual3D.Geometry>
<Viewport2DVisual3D.Material>
<DiffuseMaterial
Viewport2DVisual3D.IsVisualHostMaterial="True"
Brush="White"/>
</Viewport2DVisual3D.Material>
<Viewport2DVisual3D.Visual>
<StackPanel
Orientation="Vertical">
<Button
Click="Button_Click">Button</Button>
<Slider
Value="100"
ValueChanged="Slider_ValueChanged"
/>
</StackPanel>
</Viewport2DVisual3D.Visual>
</Viewport2DVisual3D>
</ModelVisual3D>
</helix:HelixView3D>
objo wrote at 2011-08-31 20:36:
I think this is related to issue 8172, and it is not solved yet...
mipa87 wrote at 2011-09-01 00:06:
Thanks for the reply, I solved it with IsViewportHitTestVisible="True"
Here is good article about it: http://msdn.microsoft.com/en-us/library/ms752097.aspx
I have one another question, what's the difference between HelixView3D and ViewPort3DConrtroller?
And here is my working code:
<helix:HelixView3D IsViewportHitTestVisible="True"> <helix:HelixView3D.Camera> <PerspectiveCamera LookDirection="-10,-10,-10" Position="10,10,10" UpDirection="0,0,1"/> </helix:HelixView3D.Camera> <helix:DefaultLightsVisual3D/> <ModelVisual3D> <Viewport2DVisual3D > <Viewport2DVisual3D.Transform> <RotateTransform3D> <RotateTransform3D.Rotation> <AxisAngleRotation3D x:Name="uiRotate" Angle="40" Axis="0, 1, 0" /> </RotateTransform3D.Rotation> </RotateTransform3D> </Viewport2DVisual3D.Transform> <Viewport2DVisual3D.Geometry> <MeshGeometry3D Positions="-1,1,0 -1,-1,0 1,-1,0 1,1,0" TextureCoordinates="0,0 0,1 1,1 1,0" TriangleIndices="0 1 2 0 2 3"/> </Viewport2DVisual3D.Geometry> <Viewport2DVisual3D.Material> <DiffuseMaterial Viewport2DVisual3D.IsVisualHostMaterial="True" Brush="White"/> </Viewport2DVisual3D.Material> <Viewport2DVisual3D.Visual> <StackPanel Orientation="Vertical"> <Button Background="Yellow" Click="Button_Click">Button1</Button> <Slider Value="100" ValueChanged="Slider_ValueChanged" /> </StackPanel> </Viewport2DVisual3D.Visual> </Viewport2DVisual3D> </ModelVisual3D> </helix:HelixView3D>
objo wrote at 2011-09-14 09:24:
try the newest version of the library, hopefully the fix on UIElements works.
Note that HelixView3D is renamed to HelixViewport3D and the IsViewportHitTestVisible property is removed.
mipa87 wrote at 2011-09-27 19:33:
Thanks, it works now correctly!
is there any way to serialize geometries to hard disk?
behnam263 wrote at 2014-07-21 08:19:
behnam263 wrote at 2014-07-27 10:06:
Help required in opennig a 3D model (.ply) using FileModelVisual3D in WPF
pyrrhicpk wrote at 2012-09-24 03:38:
Hi,
I have just started using HelixToolkit and trying to load a 3D model (.ply) in my WPF application using FileModelVisual3D with the following code:
FileModelVisual3D scan = new FileModelVisual3D();
scan.Source = "C:\\box.3ds";
myview.Children.Add(scan); //myview is my HelixViewport3D
this.Content = myview;
Running the above code does not show the model. Any suggestions?
Thanks
MVVM with background work
g_todeschini wrote at 2013-08-13 17:41:
In my view (UserControl class derived) I've placed the HelixViewport3D control and I've assigned an instance of my ViewModel to the DataContext property
<h:HelixViewport3D RotateGesture="Alt+RightClick" PanGesture="RightClick">
<h:HelixViewport3D.Camera>
<OrthographicCamera Position="80.22,0,0" LookDirection="-80.22,0,0" UpDirection="0,0,1" Width="56"/>
</h:HelixViewport3D.Camera>
<h:SunLight />
<ModelVisual3D Content="{Binding Model3D}" />
</h:HelixViewport3D>
The ModelVisual3D content property is binded with the Model3D propery of my ViewModel.
All works fine but I would like to create the model in a function that works in background. I've tried to do this using both the BackgroundWorker class that the Task.Factory.StartNew but I've always get the message that the object is property of another thread.
One of my attempt is the following
public class MyViewModel : BaseViewModel
{
private MyData _model; // the data on which to generate my 3d model
private Model3DGroup _model3d;
private CancellationTokenSource _source;
public Model3DGroup Model3D
{
get { return _model3d; }
set
{
if (_model3d != value)
{
_model3d = value;
RaisePropertyChanged(() => Model3D);
}
}
}
private void CreateModel3D(object dispatcherObject)
{
Dispatcher dispatcher = (Dispatcher)dispatcherObject;
Material nodesMaterial = MaterialHelper.CreateMaterial(Colors.Green);
double size = Math.Max(_model.Limits.Width, _model.Limits.Height);
double dn = size / 100;
double db = size / 120;
int thetaDiv = 10;
foreach (Strauss.Node node in _model.Nodes)
{
MeshBuilder meshBuilder = new MeshBuilder(false, false);
meshBuilder.AddSphere(new Point3D(node.X, node.Y, node.Z), dn, thetaDiv, thetaDiv / 2);
MeshGeometry3D mesh = meshBuilder.ToMesh(true);
dispatcher.Invoke((Action)(() => _model3d.Children.Add(new GeometryModel3D { Geometry = mesh, Material = nodesMaterial, BackMaterial = nodesMaterial })));
}
}
private void ModelLoaded(object sender, EventArgs args)
{
System.Windows.Window win = App.Current.Windows[0];
DocManagerViewModel docManager = win.DataContext as DocManagerViewModel;
_source = new CancellationTokenSource();
Task task = Task.Factory.StartNew(CreateModel3D, _model3d.Dispatcher, _source.Token);
}
}The process starts from the ModelLoaded event handler.
Can anyone please help me?
Thanks in advance.
RobPerkins wrote at 2013-08-14 18:02:
2 -- All WPF objects, including GeometryModel3D and MeshGeometry3D, have to be "Frozen" to be passed between threads. See "Freezable" in the MSDN documentation.
Change the code in CreateModel3D from what you have to something like:
var gm3d = new GeometryModel3D { Geometry = mesh, Material = nodesMaterial, BackMaterial = nodesMaterial };
dispatcher.Invoke((Action)(() => _model3d.Children.Add(gm3d.GetAsFrozen())));
HelixViewport3d::SphereVisual3D - How to add children via XAML (and a back end binding)?
BogusException wrote at 2014-07-18 19:15:
I have the back end down. Right now, the XAML is the pain.
Given the following working XAML, how should I implement the backend collection of "Conns" (Connections, or Flights) in the Current Flight Demo code (which this came from)?
Below in the abbreviated XAML, this section toward the bottom is the one in question:
<ItemsControl ItemsSource="{Binding Conns}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Viewport3D /> <--- ??? or...?
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
I'm 100% on the backend. I just can't figure out how to make the XAML under Helix3D ready to bind to/show the collection...
Any help at all REALLY appreciated!!!
pat
:)
<Window x:Class="TheEarthWindow"
x:Name="TheGlobe"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:t="clr-namespace:HelixToolkit.Wpf;assembly=HelixToolkit.Wpf"
Title="TheEarthWindow" Height="800" Width="800">
<Grid>
<Grid.Resources>
[...]
</Grid.Resources>
<Grid.Triggers>
[...]
</Grid.Triggers>
<t:HelixViewport3D x:Name="view1"
Background="Black"
CameraRotationMode="Turnball"
ClipToBounds="False"
Grid.Column="0"
IsHeadLightEnabled="True"
IsHitTestVisible="True"
IsPanEnabled="False"
IsZoomEnabled="True"
MouseDown="OnMouseDown"
MouseMove="OnMouseMove"
ShowCameraInfo="False"
ShowCameraTarget="False"
ShowCoordinateSystem="False"
ShowFieldOfView="False"
ShowFrameRate="True"
ShowTriangleCountInfo="False"
ShowViewCube="True"
SubTitle="vASA Global Monitor"
SubTitleSize="40"
Title="vASA"
ZoomExtentsWhenLoaded="True" >
<t:HelixViewport3D.Camera>
<PerspectiveCamera Position="600,27400,0"
LookDirection="0,1,0"
UpDirection="0,0,1"
NearPlaneDistance="0.01"
FarPlaneDistance="Infinity"
FieldOfView="40">
<PerspectiveCamera.Transform>
<Transform3DGroup>
<RotateTransform3D>
<RotateTransform3D.Rotation>
<AxisAngleRotation3D Axis="0,0,1" Angle="0" x:Name="camRotation" />
</RotateTransform3D.Rotation>
</RotateTransform3D>
</Transform3DGroup>
</PerspectiveCamera.Transform>
</PerspectiveCamera>
</t:HelixViewport3D.Camera>
<t:SunLight />
<t:SphereVisual3D x:Name="TheEarthSphere"
Material="{StaticResource EarthJPG}"
Radius="1"
ThetaDiv="25"
PhiDiv="25" >
<!-- WHAT GOES HERE FOR TUBES? -->
<ItemsControl ItemsSource="{Binding Conns}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Viewport3D /> <--- ??? or...?
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
<!-- IS THE ABOVE EVEN IN THE RIGHT PART OF THE TREE? -->
</t:SphereVisual3D>
</t:HelixViewport3D>
</Grid>
</Window>
Event that fires when the camera stops moving
everytimer wrote at 2014-07-31 21:24:
I'm doing it now by subscribing to every MouseEvent that allows interaction with the camera (specifically ButtonUp). The problem is that when the user has zoomed I don't have a way to know when he has stopped zooming. Other issue of capturing mouse events is that when the camera change has been generated programatically (set some saved view, etc) and there is some animation I can't do it either.
I would like to know if there is some event that I can subscribe to know when the Camera is "done", when it has stopped moving.
If such event doesn't exist I would like to know if it is possible to create one without modifying the source code of HelixToolKit and how it could be done.
Thank you very much.
Monday Blessing Images
Nobody warned you Monday would feel this heavy. The alarm goes off, the week stretches out like something you have to survive, and before your coffee cools, you need something to anchor you. That is exactly what Monday Blessing Images are for not decoration, not filler, but real words carrying real weight for the people who need them most. A blessing shared on a Monday morning can shift someone’s entire week. It can pull a friend back from the edge of dread and remind them they are covered, protected, and not walking alone. Keep reading, because these Monday Blessing Images were built for moments exactly like yours.
Tekkentag
The Tekken Tag game is a popular fighting Bets game that introduces a new style of gameplay. Instead of using one fighter, you control two characters and switch between them. This makes the game more exciting and gives more chances to win.Many players enjoy the Tekken Tag Tournament because it mixes action with smart thinking. Whether you are new or already a fan, this guide will help you better understand the game.
Lunabet Game Download Real Earning App In Pakistan
The Lunabet game Download is a simple mobile platform where players enjoy fun games in a quick and easy way. Many users choose the Lunabet game because it works smoothly on phones and does not require complex steps. The design of the Lunabet game is clean, so even new players feel comfortable from the start.Today, people want games that are fast and easy to use. The Lunabet game meets this need by giving quick access and simple controls. This guide will help you understand the Lunabet game, its features, and how to use it in a safe and smart way.
kuwinzhzcom
Kuwin mang đến không gian giải trí trực tuyến hiện đại, nơi người chơi có thể trải nghiệm cá cược thể thao, casino, game bài và slot đa dạng trong môi trường an toàn, minh bạch. Giao diện tối ưu, tốc độ truy cập nhanh cùng dịch vụ chăm sóc khách hàng tận tâm giúp Kuwin trở thành lựa chọn hàng đầu của cộng đồng yêu thích cá cược trực tuyến.
Website: https://kuwinzhz.com/
Customer support service by UserEcho