blob: 9bb6f5fdcafde575a53228b8f9d6262d129012bf [file] [log] [blame]
<?php
/**
* File containing the ezcDocumentPdfBoundingBox class
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Document
* @version //autogen//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @access private
*/
/**
* Bounding box
*
* Simple struct, representing a bounding box, used to specify rectangular
* covered or availalable areas.
*
* @package Document
* @access private
* @version //autogen//
*/
class ezcDocumentPdfBoundingBox extends ezcBaseStruct
{
/**
* Vertical box position
*
* @var float
*/
public $x;
/**
* Horizontal box position
*
* @var float
*/
public $y;
/**
* Box width
*
* @var float
*/
public $width;
/**
* Box height
*
* @var float
*/
public $height;
/**
* Construct a bounding box from its dimensions
*
* @param float $x
* @param float $y
* @param float $width
* @param float $height
* @return void
*/
public function __construct( $x, $y, $width, $height )
{
$this->x = (float) $x;
$this->y = (float) $y;
$this->width = (float) $width;
$this->height = (float) $height;
}
}
?>