CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
2
3 Sketch
3
4
5
3.1 Sketch methods
6
7
3.1-1 POLYMAKE_SKETCH_WITH_OPTIONS
8
9
POLYMAKE_SKETCH_WITH_OPTIONS( arg1, arg2 )  operation
10
Returns: nothing
11
12
This method produces the sketch output from polymake. Sketch have to be
13
installed to use this method. The first argument must be a polymake external
14
object, the second can be a filename, as a string, or a list of pairs
15
specifying polymakes VISUAL options. In each pair the first entry needs to
16
be the name of the option, the second should be the value it has to be
17
given. As value strings and lists of integers are allowed. Please see the
18
polymake documentation for more informations.
19
20
3.1-2 POLYMAKE_SKETCH_WITH_OPTIONS
21
22
POLYMAKE_SKETCH_WITH_OPTIONS( arg1, arg2, arg3 )  operation
23
Returns: nothing
24
25
This works like the other POLYMAKE_SKETCH_WITH_DOCUMENTATION method but one
26
can give a filename and options at the same time. Second argument here needs
27
to be the filename, third the list of VISUAL option pairs.
28
29
3.1-3 POLYMAKE_CREATE_TIKZ_FILE
30
31
POLYMAKE_CREATE_TIKZ_FILE( arg1, arg2 )  operation
32
Returns: nothing
33
34
Given a polymake object and a filename, this method produces the tikz output
35
given by sketch and stores it in the file.
36
37
3.1-4 POLYMAKE_CREATE_TIKZ_FILE
38
39
POLYMAKE_CREATE_TIKZ_FILE( arg1, arg2, arg3 )  operation
40
Returns: nothing
41
42
This does the same as POLYMAKE_CREATE_TIKZ_FILE but the third argument is
43
passed to the VISUAL command of polymake. It need to be a (possibly empty)
44
list of options. The list must be consist of pairs, where the first entry is
45
the name of the option the second the value. As values strings and lists of
46
integers are allowed.
47
48
3.1-5 POLYMAKE_CREATE_TIKZ_FILE_WITH_SKETCH_OPTIONS
49
50
POLYMAKE_CREATE_TIKZ_FILE_WITH_SKETCH_OPTIONS( arg1, arg2, arg3, arg4 )  operation
51
Returns: nothing
52
53
Works like POLYMAKE_CREATE_TIKZ_FILE with 3 arguments, but the last argument
54
has to be a string of options passed directly to sketch. For example, if you
55
want to have a compilable tex file build, add "-T".
56
57
58