2017年11月13日 星期一

JavaFX 3D - Pentagonal Antiprism-Trapezohedron Toroid

以下是以JavaFX 8的TriangleMesh類別建構之Pentagonal Antiprism-Trapezohedron Toroid,Pentagonal Antiprism-Trapezohedron Toroid 屬於Non-Regular Toroidal Solid的一種。

A toroid is said to be non-regular if not all of its faces have the same number of vertices, or not all of its vertices join the same number of faces. All of the toroids on this page are non-regular.
float C0 = length * 0.0f;
float C1 = length * 0.5f;
float C2 = length * (float) (3.0 - Math.sqrt(5.0)) / 4.0f;
float C3 = length * (float) (Math.sqrt(5.0) - 1.0) / 4.0f;
float C4 = length * (float) (1.0 + Math.sqrt(5.0)) / 4.0f;

// 建立TriangleMesh
TriangleMesh trianglemesh = new TriangleMesh();

// 設定頂點座標
trianglemesh.getPoints().addAll(
   C1,  C0,  C4,
   C1,  C0, -C4,
  -C1,  C0,  C4,
  -C1,  C0, -C4,
   C0,  C4,  C1,
   C0,  C4, -C1,
   C0, -C4,  C1,
   C0, -C4, -C1,
   C4,  C1,  C0,
  -C4, -C1,  C0,
   C0,  C2,  C1,
   C0,  C2, -C1,
   C0, -C2,  C1,
   C0, -C2, -C1,
   C3,  C3,  C3,
   C3,  C3, -C3,
  -C3, -C3,  C3,
  -C3, -C3, -C3,
   C2,  C1,  C0,
  -C2, -C1,  C0
);

// 設定貼圖座標
trianglemesh.getTexCoords().addAll(
  0.0f, 0.0f, // 0
  0.5f, 0.0f, // 1
  1.0f, 0.0f, // 2
  0.0f, 0.5f, // 3
  0.5f, 0.5f, // 4
  1.0f, 0.5f, // 5
  0.0f, 1.0f, // 6
  0.5f, 1.0f, // 7
  1.0f, 1.0f  // 8
);

// 設定各三角形的面
trianglemesh.getFaces().addAll(
  0, 1, 12, 5, 10, 2,   // Yellow
  0, 1,  6, 5, 12, 2,   // Yellow
  6, 1, 16, 5, 12, 2,   // Yellow
  1, 1, 15, 5, 11, 2,   // Yellow
  1, 1,  8, 5, 15, 2,   // Yellow
  8, 1, 18, 5, 15, 2,   // Yellow
  2, 1, 10, 5, 12, 2,   // Yellow
  2, 1,  4, 5, 10, 2,   // Yellow
  4, 1, 14, 5, 10, 2,   // Yellow
  3, 1, 17, 5, 13, 2,   // Yellow
  3, 1,  9, 5, 17, 2,   // Yellow
  9, 1, 19, 5, 17, 2,   // Yellow
  4, 1, 18, 5, 14, 2,   // Yellow
  4, 1,  5, 5, 18, 2,   // Yellow
  5, 1, 15, 5, 18, 2,   // Yellow
  5, 1, 11, 5, 15, 2,   // Yellow
  5, 1,  3, 5, 11, 2,   // Yellow
  3, 1, 13, 5, 11, 2,   // Yellow
  6, 1, 19, 5, 16, 2,   // Yellow
  6, 1,  7, 5, 19, 2,   // Yellow
  7, 1, 17, 5, 19, 2,   // Yellow
  7, 1, 13, 5, 17, 2,   // Yellow
  7, 1,  1, 5, 13, 2,   // Yellow
  1, 1, 11, 5, 13, 2,   // Yellow
  8, 1, 14, 5, 18, 2,   // Yellow
  8, 1,  0, 5, 14, 2,   // Yellow
  0, 1, 10, 5, 14, 2,   // Yellow
  9, 1, 16, 5, 19, 2,   // Yellow
  9, 1,  2, 5, 16, 2,   // Yellow
  2, 1, 12, 5, 16, 2,   // Yellow
  2, 0,  6, 3,  0, 1,   // Red
  2, 0,  0, 3,  4, 1,   // Red
  3, 0,  1, 3,  7, 1,   // Red
  3, 0,  7, 3,  9, 1,   // Red
  4, 0,  0, 3,  8, 1,   // Red
  4, 0,  8, 3,  5, 1,   // Red
  5, 0,  8, 3,  1, 1,   // Red
  5, 0,  1, 3,  3, 1,   // Red
  6, 0,  2, 3,  9, 1,   // Red
  6, 0,  9, 3,  7, 1    // Red
);   

// 設定各面的平滑參數
trianglemesh.getFaceSmoothingGroups().addAll(
  0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0,
  0, 0, 0, 0, 0
);

// 建立MeshView
MeshView meshview;

meshview = new MeshView(createMesh(170));
...
【參考資料】

[1] Java Official Web Site:http://www.oracle.com/technetwork/java/index.html
[2] JavaFX:http://www.oracle.com/technetwork/java/javafx
[3] JavaFX 8.0 API Specification.
[4] Java Platform, Standard Edition 8 API Specification.
[5] JDK 8 Certified System Configurations.
[6] H. M. Cundy, A. P. Rollett, Mathematical Models, Tarquin Publications, 1981.
[7] G. Sellers, R. S. Wright, N. Haemel, OpenGL SuperBible: Comprehensive Tutorial and Reference (6th Edition), Addison-Wesley Professional, 2013.
[8] 黃嘉輝, JavaFX 8技術手冊, ISBN: 9789863474050, 碁峰資訊, 2014.

© Chia-Hui Huang

沒有留言:

張貼留言