c

org.nlogo.agent

Turtle2D

class Turtle2D extends Turtle

Source
Turtle2D.java
Linear Supertypes
Turtle, AgentColors, api.Turtle, Agent, Comparable[Agent], api.Agent, AgentJ, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Turtle2D
  2. Turtle
  3. AgentColors
  4. Turtle
  5. Agent
  6. Comparable
  7. Agent
  8. AgentJ
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Turtle2D(world: World, breed: AgentSet, xcor: Double, ycor: Double)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addLink(link: Link): Unit
    Definition Classes
    Turtle
  5. def agentBit(): Int
    Definition Classes
    TurtleAgent
  6. def alpha(): Int

    0-255, 0 = invisible, 255 = opaque

    0-255, 0 = invisible, 255 = opaque

    Definition Classes
    TurtleAgent
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def classDisplayName(): String

    Returns a displayable name of this type of agent (Turtle, Link, Patch, Observer)

    Returns a displayable name of this type of agent (Turtle, Link, Patch, Observer)

    Definition Classes
    TurtleAgentAgent
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def color(rgb: LogoList, varIndex: Int): Unit
    Definition Classes
    Turtle
  11. def color(): AnyRef

    Returns the value of the color variable, a Double or LogoList.

    Returns the value of the color variable, a Double or LogoList.

    Definition Classes
    TurtleTurtle
  12. def colorDouble(boxedColor: Double): Unit
    Definition Classes
    Turtle
  13. def colorDoubleUnchecked(boxedColor: Double): Unit
    Definition Classes
    Turtle
  14. def compareTo(a: Agent): Int
    Definition Classes
    Agent → Comparable
  15. def die(): Unit
    Definition Classes
    Turtle
  16. def dx(): Double
    Definition Classes
    Turtle2DTurtle
  17. def dy(): Double
    Definition Classes
    Turtle2DTurtle
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def face(agent: Agent, wrap: Boolean): Unit
    Definition Classes
    Turtle2DTurtle
  21. def face(x: Double, y: Double, wrap: Boolean): Unit
    Definition Classes
    Turtle
  22. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def getBreed(): TreeAgentSet

    Returns the breed AgentSet of this turtle, all turtles if the turtle is unbreeded.

    Returns the breed AgentSet of this turtle, all turtles if the turtle is unbreeded.

    Definition Classes
    TurtleTurtle
  24. def getBreedIndex(): Int

    Returns the index of this turtle's breed.

    Returns the index of this turtle's breed.

    Definition Classes
    TurtleTurtle
  25. def getBreedVariable(name: String): AnyRef
    Definition Classes
    TurtleAgent
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getLinkBreedVariable(name: String): AnyRef
    Definition Classes
    TurtleAgent
  28. def getLinkVariable(vn: Int): AnyRef
    Definition Classes
    TurtleAgent
  29. def getPatchAtHeadingAndDistance(delta: Double, distance: Double): Patch
    Definition Classes
    Turtle2DTurtle
  30. def getPatchAtOffsets(dx: Double, dy: Double): Patch
    Definition Classes
    Turtle2DTurtleAgent
  31. def getPatchHere(): Patch

    Returns the patch that this turtle is on.

    Returns the patch that this turtle is on.

    Definition Classes
    Turtle2DTurtleTurtle
  32. def getPatchVariable(vn: Int): AnyRef
    Definition Classes
    TurtleAgent
  33. def getTurtleOrLinkVariable(varName: String): AnyRef
    Definition Classes
    TurtleAgent
  34. def getTurtleVariable(vn: Int): AnyRef
    Definition Classes
    TurtleAgent
  35. def getTurtleVariableDouble(vn: Int): Double
    Definition Classes
    Turtle
  36. def getVariable(name: String): AnyRef
    Definition Classes
    Turtle
  37. def getVariable(vn: Int): AnyRef

    Returns the value of the variable in the given position of the agent variable array

    Returns the value of the variable in the given position of the agent variable array

    vn

    the index into the agent variable array

    Definition Classes
    TurtleAgentAgent
  38. def hasLabel(): Boolean

    Returns true if the label variable has a non-empty string value.

    Returns true if the label variable has a non-empty string value.

    Definition Classes
    TurtleTurtle
  39. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  40. def hatch(): Turtle
    Definition Classes
    Turtle2DTurtle
  41. def hatch(breed: TreeAgentSet): Turtle
    Definition Classes
    Turtle
  42. def heading(heading: Double): Unit
    Definition Classes
    Turtle
  43. def heading(heading: Double, seenTurtles: Set[Turtle]): Unit
    Definition Classes
    Turtle
  44. def heading(heading: Double): Unit

    Sets the value of the heading variable

    Sets the value of the heading variable

    Definition Classes
    TurtleTurtle
  45. def heading(): Double

    Returns the value of the heading variable.

    Returns the value of the heading variable.

    Definition Classes
    TurtleTurtle
  46. def hidden(hidden: Boolean): Unit
    Definition Classes
    Turtle
  47. def hidden(): Boolean

    Returns the value of the hidden? variable.

    Returns the value of the hidden? variable.

    Definition Classes
    TurtleTurtle
  48. def home(): Unit
    Definition Classes
    Turtle2DTurtle
  49. def id: Long

    Returns the id number of this agent.

    Returns the id number of this agent. The who number in the case of a turtle, index into the array in the case of patches

    Definition Classes
    AgentAgent
  50. def id_=(newId: Long): Unit
    Definition Classes
    Agent
  51. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  52. def jump(distance: Double): Unit

    Moves the turtle forward distance as if the command jump were used

    Moves the turtle forward distance as if the command jump were used

    distance

    this amount to jump

    Definition Classes
    Turtle2DTurtleTurtle
  53. def kind(): AgentKind

    Returns the kind of this agent (observer, turtle, patch, or link.

    Returns the kind of this agent (observer, turtle, patch, or link.

    Definition Classes
    TurtleAgent
  54. def label(label: Any): Unit
    Definition Classes
    Turtle
  55. def label(): AnyRef
    Definition Classes
    Turtle
  56. def labelColor(rgb: LogoList, valueIndex: Int): Unit
    Definition Classes
    Turtle
  57. def labelColor(labelColor: Double): Unit
    Definition Classes
    Turtle
  58. def labelColor(): AnyRef

    Returns the value of the label-color variable.

    Returns the value of the label-color variable.

    Definition Classes
    TurtleTurtle
  59. def labelString(): String

    Returns the value of the label variable.

    Returns the value of the label variable.

    Definition Classes
    TurtleTurtle
  60. def lineThickness(): Double

    Returns the line-thickness.

    Returns the line-thickness.

    Definition Classes
    TurtleTurtle
  61. def links(): Array[Link]
    Definition Classes
    Turtle
  62. def moveTo(otherAgent: Agent): Unit
    Definition Classes
    Turtle
  63. def moveToPatchCenter(): Unit
    Definition Classes
    Turtle2DTurtle
  64. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  66. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  67. def ownsVariable(name: String): Boolean
    Definition Classes
    Turtle
  68. def penMode(penMode: String): Unit
    Definition Classes
    Turtle
  69. def penMode(): String
    Definition Classes
    Turtle
  70. def penSize(penSize: Double): Unit
    Definition Classes
    Turtle
  71. def penSize(): Double
    Definition Classes
    Turtle
  72. def realloc(oldProgram: Program, newProgram: Program): Agent
    Definition Classes
    TurtleAgent
  73. def removeLink(link: Link): Boolean
    Definition Classes
    Turtle
  74. def selectLinks(out: Boolean, in: Boolean, linkSet: AgentSet): Array[Link]
    Definition Classes
    Turtle
  75. def setBreed(breed: AgentSet): Unit

    This version of setBreed properly resets the global breed AgentSets Caller should ensure that the turtle isn't a link (links aren't allowed to change breed).

    This version of setBreed properly resets the global breed AgentSets Caller should ensure that the turtle isn't a link (links aren't allowed to change breed).

    Definition Classes
    Turtle
  76. def setBreedVariable(name: String, value: Any): Unit
    Definition Classes
    TurtleAgent
  77. def setId(id: Long): Unit
    Definition Classes
    TurtleAgent
  78. def setLinkBreedVariable(name: String, value: Any): Unit
    Definition Classes
    TurtleAgent
  79. def setLinkVariable(vn: Int, value: Double): Unit
    Definition Classes
    TurtleAgent
  80. def setLinkVariable(vn: Int, value: Any): Unit
    Definition Classes
    TurtleAgent
  81. def setPatchVariable(vn: Int, value: Double): Unit
    Definition Classes
    TurtleAgent
  82. def setPatchVariable(vn: Int, value: Any): Unit
    Definition Classes
    TurtleAgent
  83. def setTurtleOrLinkVariable(varName: String, value: Any): Unit
    Definition Classes
    TurtleAgent
  84. def setTurtleVariable(vn: Int, value: Any): Unit
    Definition Classes
    TurtleAgent
  85. def setTurtleVariable(vn: Int, value: Double): Unit
    Definition Classes
    TurtleAgent
  86. def setVariable(vn: Int, value: Any): Unit

    Sets the variable in the position vn of the agent variable array to value

    Sets the variable in the position vn of the agent variable array to value

    vn

    the index into the agent variable array

    value

    the new value for the variable

    Definition Classes
    TurtleAgentAgent
    Exceptions thrown

    api.AgentException If value is the wrong type for the given variable or if you try to change variables that cannot be changed

  87. def setVariables(v: Array[AnyRef]): Unit
    Definition Classes
    Agent
  88. def shape(shape: String): Unit
    Definition Classes
    Turtle
  89. def shape(): String

    Returns the name of the current shape

    Returns the name of the current shape

    Definition Classes
    TurtleTurtleAgent
  90. def shortestPathX(x: Double): Double
    Definition Classes
    Turtle
  91. def shortestPathY(y: Double): Double
    Definition Classes
    Turtle
  92. def size(size: Double): Unit
    Definition Classes
    Turtle
  93. def size(): Double

    Returns the size of this agent

    Returns the size of this agent

    Definition Classes
    TurtleAgent
  94. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  95. def toString(): String
    Definition Classes
    Turtle → AnyRef → Any
  96. def turnRight(delta: Double): Unit
    Definition Classes
    Turtle2DTurtle
  97. def validRGBList(rgb: LogoList, allowAlpha: Boolean): Unit
    Definition Classes
    AgentColors
    Annotations
    @throws( classOf[AgentException] )
  98. def variableName(vn: Int): String

    Returns the name of the variable with the given index.

    Returns the name of the variable with the given index. Works for built-in, *-own, and breed variables.

    vn

    the index of the variable

    Definition Classes
    TurtleAgent
  99. def variables: Array[AnyRef]

    Returns raw array of all agent variables.

    Returns raw array of all agent variables. Warning: this method is liable to change return type in a future API version.

    Definition Classes
    AgentAgent
  100. def variables_=(v: Array[AnyRef]): Unit
    Definition Classes
    Agent
  101. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  102. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  103. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  104. def world: World

    Returns the world object associated with this agent

    Returns the world object associated with this agent

    Definition Classes
    AgentAgent
  105. def xandycor(xcor: Double, ycor: Double): Unit
    Definition Classes
    Turtle
  106. def xandycor(xcor: Double, ycor: Double, seenTurtles: Set[Turtle], isJump: Boolean): Unit
    Definition Classes
    Turtle
  107. def xandycor(xcor: Double, ycor: Double): Unit
    Definition Classes
    Turtle
  108. def xandycorHelper(xcor: Double, ycor: Double, seenTurtles: Set[Turtle], isJump: Boolean): Unit
    Definition Classes
    Turtle
  109. def xandycorHelper(xcor: Double, ycor: Double, isJump: Boolean): Unit
    Definition Classes
    Turtle
  110. def xcor(xcor: Double): Unit
    Definition Classes
    Turtle
  111. def xcor(xcor: Double): Unit
    Definition Classes
    Turtle
  112. def xcor(): Double

    Returns the value of the xcor variable.

    Returns the value of the xcor variable.

    Definition Classes
    TurtleTurtle
  113. def ycor(ycor: Double): Unit
    Definition Classes
    Turtle
  114. def ycor(ycor: Double): Unit
    Definition Classes
    Turtle
  115. def ycor(): Double

    Returns the value of the ycor variable.

    Returns the value of the ycor variable.

    Definition Classes
    TurtleTurtle

Inherited from Turtle

Inherited from AgentColors

Inherited from api.Turtle

Inherited from Agent

Inherited from Comparable[Agent]

Inherited from api.Agent

Inherited from AgentJ

Inherited from AnyRef

Inherited from Any

Ungrouped