|
Archive:
Subtopics:
Comments disabled |
Wed, 27 Dec 2006
Linogram development: 20061227 Update
define regular_polygon[N] closed {
param number radius, rotation=0;
point vertex[N], center;
line edge[N];
constraints {
vertex[i] = center + radius * cis(rotation + 360*i/N);
edge[i].start = vertex[i];
edge[i].end = vertex[i+1];
}
}
[Other articles in category /linogram] permanent link |