# File lib/zyps.rb, line 93
        def initialize (name = nil, location = Location.new, color = Color.new, vector = Vector.new, age = 0, tags = [])
                @name, @location, @color, @vector, @tags = name, location, color, vector, tags
                @identifier = rand(99999999) #TODO: Current setup won't necessarily be unique.
                self.age = age
        end