source: java/main/src/main/java/com/framsticks/model/Part.java @ 105

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

HIGHLIGHTS:

  • import refactorization: move Tree, Path, etc.

from core to structure package

  • initial serialization implementation
  • improve PrimeExperiment? test
  • many organizational changes and convenience improvements

CHANGELOG:
Make registry in AbstractTree? final.

Move most classes from core to structure package.

Minor changes.

Switch names of Future and FutureHandler?.

Rename ExceptionResultHandler? to ExceptionHandler?.

Rename ExceptionHandler? to ExceptionDispatcherHandler?.

Fix bug in ParamCandidate? cache.

Add missing synchronization to the BufferedDispatcher?.

Develop @Serialized support.

Rework serialization further.

Add serialization/deserialization interface to ValueParam?.

Move getStorageType and isNumeric from Param down to params hierarchy.

Minor changes.

Improve param type induction.

Add TestSerializedClass? for testing new serialization.

Add info files gor GenePool? and Population.

Add standard.expt exemplary netfile.

Add type name field to PropertiesObject?.

Use PropertiesObject? for PropertiesAccess? instead of ordinary map.

Hide getFramsClass is several more places.

More unification accross FramsClass?, Access and Path.

Add ParamCollection?.

Simplify interface for getting params from FramsClass?, Access
or Path.

Make Access.call() interface variadic.

Add arguments(args) convenience wrapper around new Object[] {args}.

Upgrade to apache.commons.lang version 3.1

Minor improvement with Response constructors.

Develop proper result printing in ClientAtServer?.

Add experimentNetsave to PrimeExperiment?.

File size: 1.0 KB
Line 
1package com.framsticks.model;
2
3
4import com.framsticks.params.annotations.FramsClassAnnotation;
5import com.framsticks.params.annotations.ParamAnnotation;
6import com.framsticks.util.math.Point3d;
7
8/**
9 * The Class Part.
10 */
11@FramsClassAnnotation(id = "p")
12public class Part extends BasePart implements ModelComponent {
13
14        @ParamAnnotation(id = "rx")
15        public double rotationX;
16
17        @ParamAnnotation(id = "ry")
18        public double rotationY;
19
20        @ParamAnnotation(id = "rz")
21        public double rotationZ;
22
23        public Point3d getRotation() { return new Point3d(rotationX, rotationY, rotationZ); }
24        public void setRotation(Point3d r) { rotationX = r.x; rotationY = r.y; rotationZ = r.z; }
25
26        @ParamAnnotation(id = "dn")
27        public double density;
28
29        @ParamAnnotation(id = "ing")
30        public double ingestion;
31
32        @ParamAnnotation(id = "as")
33        public double assimilation;
34
35        @ParamAnnotation(id = "i")
36        public String info;
37
38        @ParamAnnotation(id = "Vstyle")
39        public String visualizationStyle;
40
41        @ParamAnnotation(id = "vs")
42        public double visualThickness;
43
44        @ParamAnnotation
45        public double vr, vg, vb;
46
47}
Note: See TracBrowser for help on using the repository browser.