1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Trait MathAndTrigonometry |
4
|
|
|
* |
5
|
|
|
* @link https://www.icy2003.com/ |
6
|
|
|
* @author icy2003 <[email protected]> |
7
|
|
|
* @copyright Copyright (c) 2017, icy2003 |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
namespace icy2003\php\icomponents\excel; |
11
|
|
|
|
12
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\AMAT; |
13
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\BMAT; |
14
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\CMAT; |
15
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\DMAT; |
16
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\EMAT; |
17
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\FMAT; |
18
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\GMAT; |
19
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\IMAT; |
20
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\LMAT; |
21
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\MMAT; |
22
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\OMAT; |
23
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\PMAT; |
24
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\QMAT; |
25
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\RMAT; |
26
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\SMAT; |
27
|
|
|
use icy2003\php\icomponents\excel\mathAndTrigonometry\TMAT; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* 数学和三角 |
31
|
|
|
*/ |
32
|
|
|
trait MathAndTrigonometry |
33
|
|
|
{ |
34
|
|
|
use AMAT, BMAT, CMAT, DMAT, EMAT, FMAT, GMAT, IMAT, LMAT, MMAT, OMAT, PMAT, QMAT, RMAT, SMAT, TMAT; |
35
|
|
|
} |
36
|
|
|
|