What is the best way to store e.q. rectangles in Django? I was thinking about something like
start_position = models.CommaSeparatedIntegerField(max_length=10,
blank=True,
null=True)
heigh = models.IntegerField(blank=True,
null=True)
width = models.IntegerField(blank=True,
null=True)
in my model, but somehow this don't look correct. Is there a better way doing this? Would there be a way to have also collision detection maybe?