This file contains hidden or 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
| factor[n_] := Reverse[Flatten[ | |
| Map[Table[#[[1]], {#[[2]]}] &, FactorInteger[n]]]] | |
| On[Assert]; | |
| Assert[factor[24] == {3, 2, 2, 2}]; | |
| draw[origin_, frame_, delta_, {p_, rest___}, start_] := { | |
| Circle[origin, frame], | |
| With[{r = If[p == 1, 1, frame Sin[Pi/p]/(1 + Sin[Pi/p])]}, | |
| Table[ |
This file contains hidden or 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
| @echo off | |
| echo tcpdfcrop v0.9.4 (2015-08-06) | |
| setlocal | |
| if /I "%~1"=="/h" ( | |
| set BBOX=HiResBoundingBox | |
| shift | |
| ) else ( | |
| set BBOX=BoundingBox | |
| ) | |
| set FROMDIR=%~dp1 |
NewerOlder