mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix for #17524
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@84120 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5ece80a00a
commit
3a86808ceb
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<reference id="ref.cpdf">
|
||||
<title>ClibPDF functions</title>
|
||||
<titleabbrev>ClibPDF</titleabbrev>
|
||||
|
@ -114,7 +114,7 @@ while($pagecount-- > 0) {
|
|||
|
||||
/* minute strokes */
|
||||
cpdf_setlinewidth($pdf, 2.0);
|
||||
for ($alpha = 0; $alpha < 360; $alpha += 6)
|
||||
for ($alpha = 0; $alpha < 360; $alpha += 6)
|
||||
{
|
||||
cpdf_rotate($pdf, 6.0);
|
||||
cpdf_moveto($pdf, $radius, 0.0);
|
||||
|
@ -127,7 +127,7 @@ while($pagecount-- > 0) {
|
|||
|
||||
/* 5 minute strokes */
|
||||
cpdf_setlinewidth($pdf, 3.0);
|
||||
for ($alpha = 0; $alpha < 360; $alpha += 30)
|
||||
for ($alpha = 0; $alpha < 360; $alpha += 30)
|
||||
{
|
||||
cpdf_rotate($pdf, 30.0);
|
||||
cpdf_moveto($pdf, $radius, 0.0);
|
||||
|
|
Loading…
Reference in a new issue