略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: CairoMatrix::initRotate

2024-05-03

CairoMatrix::initRotate

cairo_matrix_init_rotate

(PECL cairo >= 0.1.0)

CairoMatrix::initRotate -- cairo_matrix_init_rotateCreates a new rotated matrix

说明

面向对象风格 (method):

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

过程化风格:

cairo_matrix_init_rotate ( float $radians ) : object

Creates 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.

官方地址:https://www.php.net/manual/en/cairomatrix.initrotate.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3