PHP Doku:: Creates a new rotated matrix - cairomatrix.initrotate.html

Verlauf / Chronik / History: (5) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungCairoThe CairoMatrix classCairoMatrix::initRotate -- cairo_matrix_init_rotate

Ein Service von Reinhard Neidl - Webprogrammierung.

The CairoMatrix class

<<CairoMatrix::initIdentity -- cairo_matrix_init_identity

CairoMatrix::initScale -- cairo_matrix_init_scale -- cairo_matrix_create_scale>>

CairoMatrix::initRotate

cairo_matrix_init_rotate

(PECL cairo >= 0.1.0)

CairoMatrix::initRotate -- cairo_matrix_init_rotateCreates a new rotated matrix

Beschreibung

Object oriented style (method):

public static void CairoMatrix::initRotate ( float $radians )

Procedural style:

object cairo_matrix_init_rotate ( float $radians )

Creats a new matrix to a transformation that rotates by radians provided

Parameter-Liste

radians

angle of rotation, in radians. The direction of rotation is defined such that positive angles rotate in the direction from the positive X axis toward the positive Y axis. With the default axis orientation of cairo, positive angles rotate in a clockwise direction.

Rückgabewerte

Returns a new CairoMatrix object that can be used with surfaces, contexts, and patterns.

Beispiele

Beispiel #1 Object oriented style

<?php
/* Create a new Matrix */
$matrix CairoMatrix::initRotate(0.3);
?>

Beispiel #2 Procedural style

<?php
/* Create a new Matrix */
$matrix cairo_matrix_init_rotate(0.3);
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)