source: java/main/src/main/java/com/framsticks/model/MechJoint.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 366 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.params.annotations.FramsClassAnnotation;
4import com.framsticks.params.annotations.ParamAnnotation;
5
6/**
7 * @author Piotr Sniegowski
8 */
9@FramsClassAnnotation
10public class MechJoint extends BaseJoint {
11
12        @ParamAnnotation
13        public double stress;
14
15        @ParamAnnotation(id = "rotstress")
16        public double rotationStress;
17}
Note: See TracBrowser for help on using the repository browser.