简体   繁体   English

在Helix 3D工具包中向HelixViewport3D添加模型/内容

[英]Adding models/content to the HelixViewport3D in Helix 3D Toolkit

I am trying to load and display a 3d model in the HelixViewport3D. 我正在尝试在HelixViewport3D中加载并显示3D模型。

I can get as far as loading the model (OBJ), but I cannot understand how to get the model into the viewport. 我可以加载模型(OBJ),但是我不明白如何将模型放入视口。

Here's a screenshot of my WPF form... 这是我的WPF表单的屏幕截图... 主要形式

The viewprot is named as 'myView' - I thought I could hook into that to add my model, but I don't see anything obvious to use. viewprot的名称为“ myView”-我以为可以添加模型以添加模型,但看不到任何明显可用的东西。

Here's my XAML of the form : 这是我的XAML格式:

 <Window x:Class="HelixTrial.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:HelixToolkit="clr-namespace:HelixToolkit.Wpf;assembly=HelixToolkit.Wpf"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Grid HorizontalAlignment="Left" Height="250" Margin="241,37,0,0" VerticalAlignment="Top" Width="250">
        <HelixToolkit:HelixViewport3D x:Name="myView" ZoomExtentsWhenLoaded="True">
            <!-- Remember to add light to the scene -->
            <HelixToolkit:SunLight/>
            <!-- You can also add elements here in the xaml -->
            <HelixToolkit:GridLinesVisual3D Width="8" Length="8" MinorDistance="1" MajorDistance="1" Thickness="0.01"/>
        </HelixToolkit:HelixViewport3D>
    </Grid>
</Grid>

And here is the code for my form. 这是我表单的代码。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Media.Media3D;
using HelixToolkit.Wpf;

namespace HelixTrial
{

/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

        ObjReader CurrentHelixObjReader = new ObjReader();
        Model3DGroup MyModel = CurrentHelixObjReader.Read("C:/Users/Roger/Desktop/cube/cube.obj");

       // Now how to load it into the viewport... ?
    }    
}

} }

You can see where I am stuck. 你可以看到我被困在哪里。 Could someone help get me on track please. 有人可以帮助我走上正轨。

After some experimenting I found the solution. 经过一些试验,我找到了解决方案。

I added the following to my XAML : 我在我的XAML中添加了以下内容:

 <ModelVisual3D x:Name="foo"/>

The trick was to give it a name, ie 'foo' for example. 诀窍是给它起一个名字,例如'foo'。 The XAML will now look like this : XAML现在将如下所示:

 <Window x:Class="HelixTrial.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:HelixToolkit="clr-namespace:HelixToolkit.Wpf;assembly=HelixToolkit.Wpf"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Grid HorizontalAlignment="Left" Height="250" Margin="241,37,0,0" VerticalAlignment="Top" Width="250">
        <HelixToolkit:HelixViewport3D x:Name="myView" ZoomExtentsWhenLoaded="True">
            <!-- Remember to add light to the scene -->
            <HelixToolkit:SunLight/>
            <ModelVisual3D x:Name="foo"/>
            <!-- You can also add elements here in the xaml -->
            <HelixToolkit:GridLinesVisual3D Width="8" Length="8" MinorDistance="1" MajorDistance="1" Thickness="0.01"/>
        </HelixToolkit:HelixViewport3D>
    </Grid>
</Grid>

Then in the code (as per what I posted in my original question above) you can do this : 然后在代码中(按照我在上面原始问题中发布的内容),您可以执行以下操作:

 ObjReader CurrentHelixObjReader = new ObjReader();
        Model3DGroup MyModel = CurrentHelixObjReader.Read("C:/Users/Roger/Desktop/cube/cube.obj");

        // Display the model
        foo.Content = MyModel;

Easy when you find out how ;) 当您发现如何时很容易;)

# This is my code which works fine # #这是我的代码,可以正常工作#

<Window x:Class="Helix_Car_Demo.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:Helix_Car_Demo"
    xmlns:helix="http://helix-toolkit.org/wpf"
    mc:Ignorable="d"
    Background="Black"
    WindowState="Maximized" WindowStyle="None"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <helix:HelixViewport3D Name="viewport3D" ZoomExtentsWhenLoaded="True" MouseDoubleClick="viewport3D_MouseDoubleClick">
        <helix:SunLight/>
    </helix:HelixViewport3D>
</Grid>

Here is my .cs File 这是我的.cs文件

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        ModelVisual3D device = new ModelVisual3D();
        device.Content = getModel("hearse.3ds");
        viewport3D.Children.Add(device);
    }

    public Model3D getModel(string path)
    {
        Model3D device = null;
        try
        {
            viewport3D.RotateGesture = new MouseGesture(MouseAction.LeftClick);
            ModelImporter import = new ModelImporter();
            device = import.Load(path);
        }
        catch (Exception e)
        {                   }
        return device;
    }

} } }}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM