source: java/main/src/main/java/com/framsticks/model/Joint.java @ 78

Last change on this file since 78 was 78, checked in by psniegowski, 11 years ago

Add f0 parsing and f0->Model transformation.

File size: 867 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.util.Point3d;
4
5/**
6 * The Class Joint.
7 *
8 * All accessors are used by ReflectionAccess.
9 */
10public class Joint extends BaseJoint {
11
12        /** i */
13        public String info;
14        public String getI() { return info; }
15        public void setI(String i) { info = i; }
16
17        /** p1 */
18        public Integer part1;
19        public void setP1(Integer p1) { part1 = p1; }
20        public Integer getP1() { return part1; }
21
22        /** p2 */
23        public Integer part2;
24        public void setP2(Integer p2) { part2 = p2; }
25        public Integer getP2() { return part2; }
26
27
28        /** stam */
29        public Double stamina;
30        public Double getStam() { return stamina; }
31        public void setStam(Double stam) { stamina = stam; }
32
33
34        /** Vstyle */
35        public String visualizationStyle;
36        public String getVstyle() { return visualizationStyle; }
37        public void setVstyle(String Vstyle) { visualizationStyle = Vstyle; }
38}
Note: See TracBrowser for help on using the repository browser.