CairoMatrix::initIdentity

cairo_matrix_init_identity

(PECL cairo >= 0.1.0)

CairoMatrix::initIdentity -- cairo_matrix_init_identityCreates a new identity matrix

說明

物件導向風格 (method):

public static void CairoMatrix::initIdentity ( void )

程序化風格:

object cairo_matrix_init_identity ( void )

Creates a new matrix that is an identity transformation. An identity transformation means the source data is copied into the destination data without change

參數

此函式沒有參數。

回傳值

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

範例

Example #1 物件導向風格

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

Example #2 程序化風格

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

參見

add a note add a note

User Contributed Notes

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