CairoMatrix::initIdentity
cairo_matrix_init_identity
(PECL cairo >= 0.1.0)
CairoMatrix::initIdentity -- cairo_matrix_init_identity — Creates 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.
Примеры
Пример #1 Объектно-ориентированный стиль
<?php
/* Create a new Matrix */
$matrix = CairoMatrix::initIdentity();
?>
Пример #2 Процедурный стиль
<?php
/* Create a new Matrix */
$matrix = cairo_matrix_init_identity();
?>
Смотрите также
- CairoMatrix::__construct() - Creates a new CairoMatrix object
- CairoMatrix::initRotate() - Creates a new rotated matrix
- CairoMatrix::initScale() - Creates a new scaling matrix
- CairoMatrix::initTranslate() - Creates a new translation matrix
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Обработка и генерация изображений
- Cairo
- Функция CairoMatrix::__construct() - Creates a new CairoMatrix object
- Функция CairoMatrix::initIdentity() - Creates a new identity matrix
- Функция CairoMatrix::initRotate() - Creates a new rotated matrix
- Функция CairoMatrix::initScale() - Creates a new scaling matrix
- Функция CairoMatrix::initTranslate() - Creates a new translation matrix
- Функция CairoMatrix::invert() - The invert purpose
- Функция CairoMatrix::multiply() - The multiply purpose
- Функция CairoMatrix::rotate() - The rotate purpose
- Функция CairoMatrix::scale() - Applies scaling to a matrix
- Функция CairoMatrix::transformDistance() - The transformDistance purpose
- Функция CairoMatrix::transformPoint() - The transformPoint purpose
- Функция CairoMatrix::translate() - The translate purpose
Коментарии
404 Not Found