PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

CairoMatrix::initRotate - Creates a new rotated matrix | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

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.

例1 オブジェクト指向型

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

例2 手続き型

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

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「CairoMatrix::initRotate - Creates a new rotated matrix」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | CairoMatrix::initRotate - Creates a new rotated matrix」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: