外观就是一切 : 对象模型 « 三维图形动画 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 三维图形动画 » 对象模型屏幕截图 
外观就是一切


/*
The Joy of Java 3D

by Greg Hopkins

Copyright Copyright 2001


*/

/*
There are many ways to change the way that objects in your scene look. You can change 
their color, how much light they reflect. You can paint them with two-dimensional images, 
or add rough textures to their surfaces. The Appearance class contains the functions for 
making these changes. This section shows you how to use these functions.

The simplest way of setting the appearance is by specifying only the color and the shading 
method. This works for setting an object to being a simple color, but to make an object 
look realistic, you need to specify how an object appears under lights. You do this by 
creating a Material.



Step                                                        Example
1. Create an object                             Sphere sphere = new Sphere();
----------------------------------------------------------------------------------
2. Create an appearance                         Appearance ap = new Appearance();
----------------------------------------------------------------------------------
3. Create a color                                Color3f col = new Color3f(0.0f, 0.0f, 1.0f);
----------------------------------------------------------------------------------
4. Create the coloring attributes               ColoringAttributes ca = new ColoringAttributes
                                                 (col, ColoringAttributes.NICEST);
----------------------------------------------------------------------------------
5. Add the attributes to the appearance         ap.setColoringAttributes(ca);
----------------------------------------------------------------------------------
6.  Set the appearance for the object             sphere.setAppearance(ap);



*/



           
       
Related examples in the same category
1. 线类型线类型
2. Shape: Point outlineShape: Point outline
3. Color YoyoColor Yoyo
4. Yoyo LineYoyo Line
5. 使用GeometryInfo类及相关类使用GeometryInfo类及相关类
6. Example SwitchExample Switch
7. A Morph object to animate a shape between two key shapesA Morph object to animate a shape between two key shapes
8. ExHenge - create a stone-henge like (vaguely) mysterious temple thing
9. 几何引用几何引用
10. 立体女孩
11. 红绿女孩红绿女孩
12. 红绿格里芬红绿格里芬
13. cg viewer
14. 一个基本的层次模型顶端部分人躯干一个基本的层次模型顶端部分人躯干
15. 大型空心方块
16. Java 3D的框和一个自定义长方体Java 3D的框和一个自定义长方体
17. 一个简单的类使用一个索引四边形数组一个简单的类使用一个索引四边形数组
18. Simple Indexed Quad NormalsSimple Indexed Quad Normals
19. Simple Indexed QuadSimple Indexed Quad
20. 扭带可视对象扭带可视对象
21. 门
22. ShadowApp创建一个单一的平面ShadowApp创建一个单一的平面
23. 茶壶茶壶
24. 变形变形
25. VolRend
26. GouraudGouraud
27. An Object An Object
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.