Specular Material : 3D « Windows Presentation Foundation « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows Presentation Foundation » 3D 
16.117.15.Specular Material
<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="" Height="300" Width="800" Loaded="Window1_Loaded">
    <Window.Resources>
        <MeshGeometry3D
      x:Key="triangleMesh"
      Positions="-1,-1,0 1,-1,-2 1,1,0" 
      TriangleIndices="0 1 2" />

        <DiffuseMaterial x:Key="diffuseMaterial" Brush="Firebrick" />

        <MaterialGroup x:Key="specularMaterial">
            <StaticResource ResourceKey="diffuseMaterial" />
            <SpecularMaterial 
        Brush="White" 
        SpecularPower="5" />
        </MaterialGroup>

        <MaterialGroup x:Key="emissiveMaterial">
            <StaticResource ResourceKey="diffuseMaterial" />
            <EmissiveMaterial Color="Yellow" />
        </MaterialGroup>

    </Window.Resources>
    <!-- Specular Material -->
    <Viewport3D x:Name="vp1" Grid.Column="1">
        <Viewport3D.Camera>
            <PerspectiveCamera LookDirection="0,0,-1" Position="0,0,5" />
        </Viewport3D.Camera>
        <ModelVisual3D>
            <ModelVisual3D.Content>
                <PointLight Position="0,-1,2" Color="White" />
            </ModelVisual3D.Content>
        </ModelVisual3D>
    </Viewport3D>
</Window>
//File:Window.xaml.vb
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Media.Media3D

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
    End Sub

    Private Sub Window1_Loaded(sender As Object, e As RoutedEventArgs)
      Dim triangleMesh As MeshGeometry3D = DirectCast(TryFindResource("triangleMesh"), MeshGeometry3D)
      CreateTriangles(vp1, 4, triangleMesh, DirectCast(TryFindResource("diffuseMaterial"), Material))
    End Sub

    Private Sub CreateTriangles(viewport3D As Viewport3D, triangleCount As Integer, triangleMesh As MeshGeometry3D, material As Material)
      Dim modelVisual3D As New ModelVisual3D()
      Dim geometryModel3D As New GeometryModel3D()
      geometryModel3D.Geometry = triangleMesh
      geometryModel3D.Material = material
      modelVisual3D.Content = geometryModel3D
      Dim rotateTransform As New RotateTransform3D()
      rotateTransform.Rotation = New AxisAngleRotation3D(New Vector3D(00, -1)90)
      modelVisual3D.Transform = rotateTransform
      viewport3D.Children.Add(modelVisual3D)
    End Sub
  End Class
End Namespace
WPF Specular Material
16.117.3D
16.117.1.Define light and Material for 3D objectDefine light and Material for 3D object
16.117.2.Use 3D in Your ApplicationUse 3D in Your Application
16.117.3.A simple 3D modelA simple 3D model
16.117.4.MeshGeometry3DMeshGeometry3D
16.117.5.GeometryModel3D with MeshGeometry3DGeometryModel3D with MeshGeometry3D
16.117.6.GeometryModel3D Geometry MaterialGeometryModel3D Geometry Material
16.117.7.Setup Viewport3D.CameraSetup Viewport3D.Camera
16.117.8.DiffuseMaterial DemoDiffuseMaterial Demo
16.117.9.AmbientLight DemoAmbientLight Demo
16.117.10.Draw a 3D ModelDraw a 3D Model
16.117.11.Point lightPoint light
16.117.12.Directional lightDirectional light
16.117.13.Spot lightSpot light
16.117.14.Ambient lightAmbient light
16.117.15.Specular MaterialSpecular Material
16.117.16.Diffuse MaterialDiffuse Material
16.117.17.Interact with 3D ObjectsInteract with 3D Objects
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.