Video::height()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
crap 1
1
<?php
2
/** @formatter:off
3
 * ******************************************************************
4
 * Created by   Marko Kungla on Jul 7, 2016 - 5:36:48 AM
5
 * Contact      [email protected]
6
 * @copyright   2016 Marko Kungla - https://github.com/mkungla
7
 * @license     The MIT License (MIT)
8
 * 
9
 * @category       AframeVR
10
 * @package        aframe-php
11
 * 
12
 * Lang         PHP (php version >= 7)
13
 * Encoding     UTF-8
14
 * File         Video.php
15
 * Code format  PSR-2 and 12
16
 * @link        https://github.com/mkungla/aframe-php
17
 * @issues      https://github.com/mkungla/aframe-php/issues
18
 * ********************************************************************
19
 * Contributors:
20
 * @author Marko Kungla <[email protected]>
21
 * ********************************************************************
22
 * Comments:
23
 * @formatter:on */
24
namespace AframeVR\Extras\Primitives;
25
26
use \AframeVR\Core\Entity;
27
use \AframeVR\Interfaces\EntityInterface;
28
29
class Video extends Entity implements EntityInterface
30
{
31
32
    /**
33
     * Init <a-video>
34
     *
35
     * The video primitive displays a video on a flat plane as a texture. It is an entity that prescribes the geometry
36
     * with its geometric primitive set to plane.
37
     *
38
     * @return void
39
     */
40 2
    public function reset()
41
    {
42 2
        parent::reset();
43 2
        $this->attr('Material')->shader('flat');
44 2
        $this->color('#FFF');
45 2
        $this->attr('Material')->side('double');
46 2
        $this->attr('Material')->transparent(true);
47
        
48 2
        $this->attr('Geometry')->primitive('plane');
49 2
        $this->height(1.75);
50 2
        $this->width(3);
51 2
    }
52
53
    /**
54
     * geometry.height
55
     *
56
     * @param float $height            
57
     * @return Video
58
     */
59 2
    public function height(float $height)
60
    {
61 2
        $this->attr('Geometry')->height($height);
62 2
        return $this;
63
    }
64
65
    /**
66
     * geometry.width
67
     *
68
     * @param float $width            
69
     * @return Video
70
     */
71 2
    public function width(float $width)
72
    {
73 2
        $this->attr('Geometry')->width($width);
74 2
        return $this;
75
    }
76
}