mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2026-01-24 06:39:20 -05:00
28 lines
604 B
C++
28 lines
604 B
C++
#pragma once
|
|
|
|
#include <tc/core.hpp>
|
|
#include <optional>
|
|
#include <cmath>
|
|
|
|
/**
|
|
* Given elements of a subgroup, find the parent group's names for those same elements.
|
|
*
|
|
* Raise.
|
|
*/
|
|
void recontext() {}
|
|
|
|
/**
|
|
* Given some elements of a group and some subgroup, tile those elements according to the cosets of that subgroup
|
|
*/
|
|
void tile() {}
|
|
|
|
/**
|
|
* Given some elements of a group, apply a transformation to all elements.
|
|
*/
|
|
void translate() {}
|
|
|
|
/**
|
|
* Given some group representing an n-dimensional polyhedron, produce (n-1)-simplices that fill the surface of the polyhedron.
|
|
*/
|
|
void triangulate() {}
|