source: java/main/src/main/java/com/framsticks/model/Neuro.java @ 77

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

Add new java codebase.

File size: 1.1 KB
Line 
1package com.framsticks.model;
2
3import com.framsticks.util.Point3d;
4
5/**
6 * @author Piotr Sniegowski
7 */
8public class Neuro {
9
10        public Integer channelCount;
11
12        public Integer inputCount;
13        public Integer getGetInputCount() { return inputCount; }
14        public void setGetInputCount(Integer getInputCount) { inputCount = getInputCount; }
15
16        public Double inputSum;
17
18        public Double weightedInputSum;
19
20        public Double state;
21
22        public Double currentState;
23        public Double getCurrState() { return currentState; }
24        public void setCurrState(Double currState) { currentState = currState; }
25
26        public Boolean hold;
27
28
29        /** position_x, position_y, position_z*/
30        public final Point3d position = new Point3d();
31
32        public Double getPosition_x() { return position.x; }
33        public void setPosition_x(Double position_x) { position.x = position_x; }
34
35        public Double getPosition_y() { return position.y; }
36        public void setPosition_y(Double position_y) { position.y = position_y; }
37
38        public Double getPosition_z() { return position.z; }
39        public void setPosition_z(Double position_z) { position.z = position_z; }
40
41}
Note: See TracBrowser for help on using the repository browser.