CairoMatrix::initRotate

cairo_matrix_init_rotate

(PECL cairo >= 0.1.0)

CairoMatrix::initRotate -- cairo_matrix_init_rotateCreates a new rotated matrix

설명

객체 기반 형식 (method):

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

절차식 형식:

object cairo_matrix_init_rotate ( float $radians )

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

인수

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.

반환값

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

예제

Example #1 객체 기반 형식

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

Example #2 절차식 형식

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

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top