|
4.22.4.2 coneLink
Syntax:
coneLink( cone c )
Type:
- cone
Purpose:
- local version of the given cone around the given point of the cone
Example:
| intmat M[3][3]=
1,0,0,
0,1,0,
0,0,1;
cone c=coneViaRays(M);
intvec v=1,0,0;
cone cc=coneLink(c,v);
cc;
==> AMBIENT_DIM
==> 3
==> INEQUALITIES
==> 0,0,1,
==> 0,1,0
==> EQUATIONS
==>
print(getRays(cc));
==> 0 1 0
==> 0 0 1
intvec w=1,1,1;
cone cd=coneLink(c,w);
cd;
==> AMBIENT_DIM
==> 3
==> INEQUALITIES
==> EQUATIONS
==>
print(getRays(cd));
==>
|
|