update : 2015.11.03
php.shukuma.com검색:
|
CairoMatrix::__constructcairo_matrix_init(PECL cairo >= 0.1.0) CairoMatrix::__construct -- cairo_matrix_init — Creates a new CairoMatrix object 설명객체 기반 형식 (method):
public CairoMatrix::__construct
([ float
$xx = 1.0
[, float $yx = 0.0
[, float $xy = 0.0
[, float $yy = 1.0
[, float $x0 = 0.0
[, float $y0 = 0.0
]]]]]] )절차식 형식:
object cairo_matrix_init
([ float
$xx = 1.0
[, float $yx = 0.0
[, float $xy = 0.0
[, float $yy = 1.0
[, float $x0 = 0.0
[, float $y0 = 0.0
]]]]]] )Returns new CairoMatrix object. Matrices are used throughout cairo to convert between different coordinate spaces. Sets matrix to be the affine transformation given by xx, yx, xy, yy, x0, y0. The transformation is given by: x_new = xx * x + xy * y + x0; and y_new = yx * x + yy * y + y0; 인수
반환값Returns a new CairoMatrix object that can be used with surfaces, contexts, and patterns. 예제
Example #1 객체 기반 형식
<?php
Example #2 절차식 형식
<?php 참고
|