-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3b180f3
Showing
445 changed files
with
36,627 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
.idea/* | ||
|
||
*.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
#version 3.6; | ||
global_settings { assumed_gamma 1.0 } | ||
#default{ finish{ ambient 0.1 diffuse 0.9 conserve_energy}} | ||
|
||
#include "colors.inc" | ||
#include "math.inc" | ||
|
||
|
||
///////////////////////////// camera and light | ||
|
||
#declare Camera_Position = <12, 12, -45>; | ||
camera{ | ||
location Camera_Position | ||
right x*image_width/image_height | ||
angle 11.7 | ||
look_at <-.12, -.13, 0> | ||
} | ||
|
||
light_source{ <-400, 500, -300> color White*0.9 shadowless} | ||
light_source{ <400, 200, 100> color White*0.4 shadowless} | ||
light_source{ Camera_Position color rgb<0.9,0.9,1>*0.2 shadowless} | ||
sky_sphere{ pigment{ White } } | ||
|
||
|
||
# declare Factor = 1; | ||
|
||
|
||
///////////////////////////// subgroup solid | ||
|
||
# declare SkeletonColor = rgb<.02, .02, .02>; | ||
# declare FaceColor = rgbt<.2, .2, .2, .2>; | ||
|
||
# declare RadVert = .2; | ||
# declare RadEdge = .07; | ||
|
||
{{!arrays}} | ||
|
||
union{ | ||
#for( Index, 0, dimension_size(UncoloredVertices, 1) - 1 ) | ||
sphere{ P[Index], RadVert } | ||
#end | ||
#for( Index, 0, dimension_size(UncoloredEdges, 1) - 1 ) | ||
#local EdgeArray = UncoloredEdges[Index]; | ||
cylinder{ P[EdgeArray[0]], P[EdgeArray[1]], RadEdge } | ||
#end | ||
pigment{ color SkeletonColor } | ||
} | ||
|
||
union{ | ||
#for( Index, 0, dimension_size(UncoloredFaces, 1) - 1 ) | ||
#local FaceArray = UncoloredFaces[Index]; | ||
#local LenOfFaceArray = dimension_size(FaceArray, 1); | ||
polygon{ LenOfFaceArray, | ||
#for(VertexIndexInFace, 0, LenOfFaceArray-1) | ||
P[FaceArray[VertexIndexInFace]] | ||
#end | ||
} | ||
#end | ||
pigment{ color FaceColor } | ||
} | ||
|
||
|
||
|
||
///////////////////////////// white truncated cuboctahedron | ||
|
||
# declare SkeletonColor = White; | ||
|
||
# declare RadVert = .12; | ||
# declare RadEdge = .05; | ||
|
||
#declare Abs = array[3]{ (1)*Factor, (1 + sqrt(2))*Factor, (1 + 2*sqrt(2))*Factor, } | ||
#declare P = array[48]{ <-Abs[2],-Abs[1],-Abs[0]>, <-Abs[2],-Abs[1],Abs[0]>, <-Abs[2],-Abs[0],-Abs[1]>, <-Abs[2],-Abs[0],Abs[1]>, <-Abs[2],Abs[0],-Abs[1]>, <-Abs[2],Abs[0],Abs[1]>, <-Abs[2],Abs[1],-Abs[0]>, <-Abs[2],Abs[1],Abs[0]>, <-Abs[1],-Abs[2],-Abs[0]>, <-Abs[1],-Abs[2],Abs[0]>, <-Abs[1],-Abs[0],-Abs[2]>, <-Abs[1],-Abs[0],Abs[2]>, <-Abs[1],Abs[0],-Abs[2]>, <-Abs[1],Abs[0],Abs[2]>, <-Abs[1],Abs[2],-Abs[0]>, <-Abs[1],Abs[2],Abs[0]>, <-Abs[0],-Abs[2],-Abs[1]>, <-Abs[0],-Abs[2],Abs[1]>, <-Abs[0],-Abs[1],-Abs[2]>, <-Abs[0],-Abs[1],Abs[2]>, <-Abs[0],Abs[1],-Abs[2]>, <-Abs[0],Abs[1],Abs[2]>, <-Abs[0],Abs[2],-Abs[1]>, <-Abs[0],Abs[2],Abs[1]>, <Abs[0],-Abs[2],-Abs[1]>, <Abs[0],-Abs[2],Abs[1]>, <Abs[0],-Abs[1],-Abs[2]>, <Abs[0],-Abs[1],Abs[2]>, <Abs[0],Abs[1],-Abs[2]>, <Abs[0],Abs[1],Abs[2]>, <Abs[0],Abs[2],-Abs[1]>, <Abs[0],Abs[2],Abs[1]>, <Abs[1],-Abs[2],-Abs[0]>, <Abs[1],-Abs[2],Abs[0]>, <Abs[1],-Abs[0],-Abs[2]>, <Abs[1],-Abs[0],Abs[2]>, <Abs[1],Abs[0],-Abs[2]>, <Abs[1],Abs[0],Abs[2]>, <Abs[1],Abs[2],-Abs[0]>, <Abs[1],Abs[2],Abs[0]>, <Abs[2],-Abs[1],-Abs[0]>, <Abs[2],-Abs[1],Abs[0]>, <Abs[2],-Abs[0],-Abs[1]>, <Abs[2],-Abs[0],Abs[1]>, <Abs[2],Abs[0],-Abs[1]>, <Abs[2],Abs[0],Abs[1]>, <Abs[2],Abs[1],-Abs[0]>, <Abs[2],Abs[1],Abs[0]>, } | ||
|
||
#declare Edges = array[72]{array[2]{16, 24}, array[2]{43, 45}, array[2]{25, 33}, array[2]{46, 47}, array[2]{20, 28}, array[2]{11, 13}, array[2]{33, 41}, array[2]{18, 26}, array[2]{44, 46}, array[2]{5, 13}, array[2]{36, 44}, array[2]{11, 19}, array[2]{7, 15}, array[2]{2, 10}, array[2]{13, 21}, array[2]{34, 42}, array[2]{6, 14}, array[2]{10, 12}, array[2]{3, 11}, array[2]{9, 17}, array[2]{19, 27}, array[2]{35, 37}, array[2]{31, 39}, array[2]{40, 41}, array[2]{42, 44}, array[2]{29, 31}, array[2]{1, 3}, array[2]{25, 27}, array[2]{29, 37}, array[2]{5, 7}, array[2]{21, 29}, array[2]{45, 47}, array[2]{34, 36}, array[2]{24, 26}, array[2]{38, 39}, array[2]{23, 31}, array[2]{30, 38}, array[2]{12, 20}, array[2]{16, 18}, array[2]{8, 16}, array[2]{2, 4}, array[2]{21, 23}, array[2]{35, 43}, array[2]{28, 30}, array[2]{6, 7}, array[2]{37, 45}, array[2]{32, 40}, array[2]{41, 43}, array[2]{40, 42}, array[2]{14, 15}, array[2]{17, 19}, array[2]{24, 32}, array[2]{39, 47}, array[2]{4, 6}, array[2]{14, 22}, array[2]{26, 34}, array[2]{27, 35}, array[2]{28, 36}, array[2]{3, 5}, array[2]{0, 8}, array[2]{4, 12}, array[2]{10, 18}, array[2]{1, 9}, array[2]{15, 23}, array[2]{8, 9}, array[2]{22, 30}, array[2]{38, 46}, array[2]{0, 2}, array[2]{32, 33}, array[2]{20, 22}, array[2]{17, 25}, array[2]{0, 1}}; | ||
|
||
union{ | ||
#for( Index, 0, 47 ) | ||
sphere{ P[Index], RadVert } | ||
#end | ||
|
||
#for( Index, 0, 71 ) | ||
#local EdgeArray = Edges[Index]; | ||
cylinder{ P[EdgeArray[0]], P[EdgeArray[1]], RadEdge } | ||
#end | ||
|
||
pigment{ color SkeletonColor } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import sys | ||
sys.path.append("..") | ||
|
||
from classes.polyhedron import Polyhedron | ||
from store import subgroup_names_and_coordinates | ||
|
||
from bottle import template | ||
from os import system | ||
|
||
|
||
command = 'mkdir FILES' | ||
system(command) | ||
|
||
|
||
for (sg_name, sg_coordinate_tuples) in subgroup_names_and_coordinates.items(): | ||
|
||
if not sg_name in ['trivial', 'C2 inv']: | ||
|
||
print('#####################', sg_name) | ||
|
||
sg_name = sg_name.replace(' ', '_') | ||
|
||
polyhedron = Polyhedron(coordinate_tuples=sg_coordinate_tuples) | ||
context = {'arrays': polyhedron.povray_arrays()} | ||
t = template('povray', context) | ||
f = open('delete_me_after_use.pov', 'w') | ||
f.write(t) | ||
f.close() | ||
|
||
image_name = 'Subgroup_of_Oh,_{name},_solid.png'.format(name=sg_name) | ||
image_size = 1000 | ||
|
||
command = 'povray delete_me_after_use.pov +ua +fn Height={size} Width={size} +O{name} -D'.format( | ||
name=image_name, | ||
size=image_size | ||
) | ||
system(command) | ||
|
||
old_image_name = image_name | ||
image_name = image_name.replace(',', '\;') | ||
|
||
command = 'mv {name_with_comma} {name_with_semicolon}'.format( | ||
name_with_comma=old_image_name, | ||
name_with_semicolon=image_name | ||
) | ||
system(command) | ||
|
||
command = 'mv {image_name} FILES'.format( | ||
image_name=image_name | ||
) | ||
system(command) |
Oops, something went wrong.