wg = ({
p1: [
makeTranslation(Vec(1, 0)),
makeTranslation(Vec(0, 1)),
makeTranslation(Vec(-1, 0)),
makeTranslation(Vec(0, -1))
],
p2: [
makeRotation(Vec(0.5, 0), 180),
makeRotation(Vec(0.5, 1), 180),
makeRotation(Vec(0, 0.5), 180),
makeRotation(Vec(1, 0.5), 180)
],
pm: [
makeTranslation(Vec(0, 1)),
makeTranslation(Vec(0, -1)),
makeReflection(Vec(0, 0), Vec(1, 0)),
makeReflection(Vec(1, 0), Vec(1, 0))
],
pg: [
makeTranslation(Vec(0, 1)),
makeTranslation(Vec(0, -1)),
makeGlide(Vec(0, 0.5), Vec(1, 0.5), Vec(1, 0)),
makeGlide(Vec(0, 0.5), Vec(-1, 0.5), Vec(1, 0))
],
cm: [
makeReflection(Vec(0, 0), Vec(0, 1)),
makeReflection(Vec(0, 1), Vec(0, 1)),
makeGlide(Vec(0, 0.5), Vec(1, 0.5), Vec(1, 0)),
makeGlide(Vec(0, 0.5), Vec(-1, 0.5), Vec(1, 0))
],
pmm: [
makeRotation(Vec(0, 0), 180),
makeRotation(Vec(1, 0), 180),
makeRotation(Vec(0, 1), 180),
makeRotation(Vec(1, 1), 180),
makeReflection(Vec(0, 0), Vec(0, 1)),
makeReflection(Vec(0, 0), Vec(1, 0)),
makeReflection(Vec(0, 1), Vec(0, 1)),
makeReflection(Vec(1, 0), Vec(1, 0))
],
pmg: [
makeRotation(Vec(0, 0.5), 180),
makeRotation(Vec(1, 0.5), 180),
makeReflection(Vec(0, 0), Vec(0, 1)),
makeReflection(Vec(0, 1), Vec(0, 1))
],
pgg: [
makeRotation(Vec(1.5, 0.5), 180),
makeRotation(Vec(-0.5, 0.5), 180),
makeRotation(Vec(0.5, 1.5), 180),
makeRotation(Vec(0.5, -0.5), 180),
makeGlide(Vec(0, 0), Vec(1, 0), Vec(1, 0)),
makeGlide(Vec(0, 1), Vec(1, 1), Vec(1, 0)),
makeGlide(Vec(0, 0), Vec(0, 1), Vec(0, 1)),
makeGlide(Vec(1, 0), Vec(1, 1), Vec(0, 1))
],
cmm: [
makeRotation(Vec(0, 0), 180),
makeRotation(Vec(0.5, 0.5), 180),
makeReflection(Vec(0, 0), Vec(1, 0)),
makeReflection(Vec(0, 0), Vec(0, 1))
],
p4: [
makeRotation(Vec(0, 0), 90),
makeRotation(Vec(1, 1), 90),
makeRotation(Vec(1, 0), 180),
makeRotation(Vec(0, 1), 180)
],
p4m: [
makeRotation(Vec(0, 1), 90),
makeRotation(Vec(1, 0), 90),
makeReflection(Vec(0.5, 0.5), Vec(1, 1))
],
p4g: [makeReflection(Vec(0.5, 0.5), Vec(1, 1)), makeRotation(Vec(0, 0), 90)],
p3: [
makeRotation(Vec(0.5, Math.sqrt(3) / 6), 120),
makeRotation(Vec(0, 0), 120)
],
p3m1: [
makeRotation(Vec(0.5, Math.sqrt(3) / 6), 120),
makeRotation(Vec(0, 0), 120),
makeReflection(Vec(0.5, 0), Vec(1, 0))
],
p31m: [
makeRotation(Vec(0.5, Math.sqrt(3) / 6), 120),
makeRotation(Vec(0, 0), 120),
makeReflection(Vec(0.5, 0), Vec(0, 1))
],
p6: [
makeRotation(Vec(0.5, Math.sqrt(3) / 6), 120),
makeRotation(Vec(0, 0), 60)
],
p6m: [
makeRotation(Vec(0.5, Math.sqrt(3) / 6), 120),
makeRotation(Vec(0, 0), 60),
makeReflection(Vec(0.5, 0), Vec(1, 0)),
makeReflection(Vec(0.5, 0), Vec(0, 1))
]
})