All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.unimplementedBiology.PNS Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.unimplementedBiology;

import model.Retina;

/**
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class PNS {
    private SNS SNS;

    /*
     * Works below the level of consciousness controlling
     * heart rate, digestion, respiratory rate, ...
     */
    // private AutonomicNervousSystem ANS;

    public PNS(Retina retine) {
        this.SNS = new SNS(retine);
        // this.ANS = null;
    }

    public SNS getSNS() {
        return this.SNS;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy