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

model.unimplementedBiology.SNS Maven / Gradle / Ivy

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

import model.Retina;

/**
 * Nerves connecting to voluntary skeletal muscles and sensory receptors using
 * two types of directed Segments(Axons).
 *
 * 1) Afferent nerve fibers(segments) =
 * incoming axons that carry activation activity away from the periphery(muscles
 * and senses) to the CNS.
 *
 * 2) Efferent nerve fibers(segments) = outgoing axons that carry activation
 * activity from the CNS outward to the periphery(muscles and senses)
 *
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class SNS {
    private Retina retina;

    public SNS(Retina retina) {
        this.retina = retina;
    }

    public Retina getRetina() {
        return this.retina;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy