source: java/main/src/main/java/com/framsticks/model/MechJoint.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: 481 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.util.Point3d;
4
5/**
6 * @author Piotr Sniegowski
7 */
8public class MechJoint extends BaseJoint {
9
10        /** stress */
11        public Double stress;
12        public Double getStress() { return stress; }
13        public void setStress(Double stress) { this.stress = stress; }
14
15        /** rotstress */
16        public Double rotationStress;
17        public Double getRotstress() { return rotationStress; }
18        public void setRotstress(Double rotstress) { rotationStress = rotstress; }
19}
Note: See TracBrowser for help on using the repository browser.