Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. Bridge bridge;
  2. void setup() {
  3. size(1000, 700);
  4. frameRate(60);
  5. translate((width / 2) - (750 / 2), height / 2);
  6.  
  7. bridge = new Bridge(5, 9);
  8. }
  9.  
  10. void draw() {
  11. }
  12.  
  13. ------------------------------------------------------------------------------------------------
  14. class Joint {
  15. float x, z;
  16. double Sx, Sz;
  17. String type;
  18. double[][] r;
  19.  
  20. Joint() {
  21. r = new double[2][1];
  22. type = "kloub";
  23. x = 250;
  24. z = -250;
  25. x = random(0, 750);
  26. z = -random(0, height / 2);
  27. }
  28. }
  29. ------------------------------------------------------------------------------------------------
  30. class Bridge {
  31. ArrayList <Joint> joint_array = new ArrayList <Joint>();
  32. ArrayList <Prut> prut_array = new ArrayList <Prut>();
  33.  
  34. Bridge(int joint_number, int rod_number) {
  35.  
  36. for (int i = 0; i < joint_number; i++) {
  37. joint_array.add(new Joint());
  38. }
  39.  
  40. for (int i = 0; i < rod_number; i++) {
  41. prut_array.add(new Prut());
  42.  
  43. if (i == 0) {
  44. prut_array.get(i).xa = joint_array.get(0).x;
  45. prut_array.get(i).za = joint_array.get(0).z;
  46. prut_array.get(i).xb = joint_array.get(1).x;
  47. prut_array.get(i).zb = joint_array.get(1).z;
  48. } else if (i == 1) {
  49. prut_array.get(i).xa = joint_array.get(0).x;
  50. prut_array.get(i).za = joint_array.get(0).z;
  51. prut_array.get(i).xb = joint_array.get(3).x;
  52. prut_array.get(i).zb = joint_array.get(3).z;
  53. }
  54.  
  55. prut_array.get(i).aktivation();
  56. }
  57. }
  58. }
  59. ----------------------------------------------------------------------------------
  60. class Prut {
  61. String joint_A_type, joint_B_type;
  62. int joint_A, joint_B;
  63. float xa, za, xb, zb, colour;
  64. double A, E, I, l, s, c, z;
  65.  
  66. Prut() {
  67. A = 0.0000494800842940392;
  68. E = 3176675.89592474;
  69. I = 2.18684301120977 * pow(10, -10);
  70. z = 0.00409807621135332;
  71. }
  72.  
  73. void aktivation() {
  74. for (int i = 0; i < 5 - 1; i++) {
  75. for (int j = i + 1; j < 5; j++) {
  76. if (xa == bridge.joint_array.get(i).x & za == bridge.joint_array.get(i).z & xb == bridge.joint_array.get(j).x & zb == bridge.joint_array.get(j).z) {
  77. joint_A = i;
  78. joint_B = j;
  79. joint_A_type = bridge.joint_array.get(i).type;
  80. joint_B_type = bridge.joint_array.get(j).type;
  81. }
  82. }
  83. }
  84. }
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement