File:FermatSpiral.png: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<pre> | |||
def _calculate_position(self, radius, icon_size, index, children_count): | |||
width, height = self.box.get_allocation() | |||
# include an offset (8) to the index | |||
# so that the center of the spiral is left blank | |||
# angle = n * 137.5 degree or 2.4 radians | |||
angle = (index + 8) * 2.4 | |||
# radius = constant * sqrt(n) | |||
radius = (_MINIMUM_RADIUS / 5) * math.sqrt(index + 8) | |||
x = radius * math.cos(angle) + (width - icon_size) / 2 | |||
y = radius * math.sin(angle) + (height - icon_size - | |||
style.GRID_CELL_SIZE) / 2 | |||
return x, y | |||
</pre> | |||
Latest revision as of 19:21, 9 September 2008
def _calculate_position(self, radius, icon_size, index, children_count):
width, height = self.box.get_allocation()
# include an offset (8) to the index
# so that the center of the spiral is left blank
# angle = n * 137.5 degree or 2.4 radians
angle = (index + 8) * 2.4
# radius = constant * sqrt(n)
radius = (_MINIMUM_RADIUS / 5) * math.sqrt(index + 8)
x = radius * math.cos(angle) + (width - icon_size) / 2
y = radius * math.sin(angle) + (height - icon_size -
style.GRID_CELL_SIZE) / 2
return x, y
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 19:16, 9 September 2008 | 600 × 450 (45 KB) | Walter (talk | contribs) |
You cannot overwrite this file.
File usage
The following page uses this file: