Village Expansion Simulation

Xutian Liu
Data Mining the City
1 min readSep 25, 2019

Junwei Li; Xutian Liu

  • Description : We simulated the growth and expansion of natural villages and how they interact with each other.
  • The Simulation
  • agents: architecture
  • environment: city environment
  • behavior: construction and deconstruction
  • parameters: architectural design fee
  • global inputs: existing architecture
  • outputs: the proportion of designed/undesigned architecture
public class Expanding : MonoBehaviour{public float x = 0.1f;public float y = 0.0f;public float z = 0.1f;// Update is called once per framevoid FixedUpdate(){transform.localScale += new Vector3(x,y,z) * Time.deltaTime;}}

--

--