org.cogchar.animoid.broker.MotionController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.cogchar.lib.animoid Show documentation
Show all versions of org.cogchar.lib.animoid Show documentation
Physical and spatial calculations
package org.cogchar.animoid.broker;
public interface MotionController {
public enum Component {
FACE_ATTENTION,
GAZE_PLAN,
}
public void setComponentState(Component c, boolean activationState);
public void setComponentValue(Component c, String value);
public void setComponentValue(Component c, Integer value);
public void setGazeState(boolean enabled);
public void setGazePlanName(String planName);
public void setGazeSightNumber(Integer sightNumber);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy