ts-components-canvas-matrix2d.md 18.7 KB
Newer Older
L
limeng 已提交
1
# Matrix2D
L
limeng 已提交
2 3 4 5 6 7 8 9 10

矩阵对象,可以对矩阵进行缩放、旋转、平移等变换。

>  **说明:**
> 
> 从 API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

## 接口

L
limeng 已提交
11 12 13 14 15 16 17 18
Matrix2D()

从API version 9开始,该接口支持在ArkTS卡片中使用。

## 属性

| 属性                      | 类型   | 描述                                                         |
| ------------------------- | ------ | ------------------------------------------------------------ |
L
limeng 已提交
19 20 21 22 23 24
| [scaleX](#scalex)         | number | 水平缩放系数。 从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [scaleY](#scaley)         | number | 垂直缩放系数。 从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [rotateX](#rotatex)       | number | 水平倾斜系数。从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [rotateY](#rotatey)       | number | 垂直倾斜系数。从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [translateX](#translatex) | number | 水平平移距离,单位为vp。 从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [translateY](#translatey) | number | 垂直平移距离,单位为vp。 从API version 9开始,该接口支持在ArkTS卡片中使用。 |
L
limeng 已提交
25 26 27

>  **说明:**
>  
L
limeng 已提交
28
>  可使用[px2vp](ts-pixel-units.md)接口进行单位转换。
L
limeng 已提交
29 30 31

### scaleX

L
limeng 已提交
32
```ts
L
limeng 已提交
33 34 35 36 37 38
// xxx.ets
@Entry
@Component
struct Matrix2DScaleX {
  @State message: string = 'Matrix2D ScaleX'

L
liuliu 已提交
39
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set scaleX")
          .onClick(() => {
L
liuliu 已提交
53
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66
            matrix.scaleX = 1
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

### scaleY

L
limeng 已提交
67
```ts
L
limeng 已提交
68 69 70 71 72 73
// xxx.ets
@Entry
@Component
struct Matrix2DScaleY {
  @State message: string = 'Matrix2D ScaleY'

L
liuliu 已提交
74
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set scaleY")
          .onClick(() => {
L
liuliu 已提交
88
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101
            matrix.scaleY = 1
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

### rotateX

L
limeng 已提交
102
```ts
L
limeng 已提交
103 104 105 106 107 108
// xxx.ets
@Entry
@Component
struct Matrix2DRotateX {
  @State message: string = 'Matrix2D RotateX'

L
liuliu 已提交
109
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set rotateX")
          .onClick(() => {
L
liuliu 已提交
123
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136
            matrix.rotateX = Math.sin(45 / Math.PI)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

### rotateY

L
limeng 已提交
137
```ts
L
limeng 已提交
138 139 140 141 142 143
// xxx.ets
@Entry
@Component
struct Matrix2DRotateY {
  @State message: string = 'Matrix2D RotateY'

L
liuliu 已提交
144
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set rotateY")
          .onClick(() => {
L
liuliu 已提交
158
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171
            matrix.rotateY = Math.cos(45 / Math.PI)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

### translateX

L
limeng 已提交
172
```ts
L
limeng 已提交
173 174 175 176 177 178
// xxx.ets
@Entry
@Component
struct Matrix2DTranslateX {
  @State message: string = 'Matrix2D TranslateX'

L
liuliu 已提交
179
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set translateX")
          .onClick(() => {
L
liuliu 已提交
193
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206
            matrix.translateX = 10
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

### translateY

L
limeng 已提交
207
```ts
L
limeng 已提交
208 209 210 211 212 213
// xxx.ets
@Entry
@Component
struct Matrix2DTranslateY {
  @State message: string = 'Matrix2D TranslateY'

L
liuliu 已提交
214
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("Set translateY")
          .onClick(() => {
L
liuliu 已提交
228
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241
            matrix.translateY = 10
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

## 方法

L
limeng 已提交
242 243
### identity

L
limeng 已提交
244
identity(): Matrix2D
L
limeng 已提交
245 246 247 248 249

创建一个单位矩阵。

从API version 9开始,该接口支持在ArkTS卡片中使用。

L
limeng 已提交
250 251 252 253
**返回值:**

| 类型                  | 说明       |
| --------------------- | ---------- |
L
limeng 已提交
254
| [Matrix2D](#matrix2d) | 单位矩阵。 |
L
limeng 已提交
255 256 257

**示例:**

L
limeng 已提交
258
```ts
L
limeng 已提交
259 260 261 262 263 264
// xxx.ets
@Entry
@Component
struct Matrix2DIdentity {
  @State message: string = 'Matrix2D Identity'

L
liuliu 已提交
265
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix identity")
          .onClick(() => {
L
liuliu 已提交
279
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
280
            matrix = matrix.identity()
L
limeng 已提交
281 282 283 284 285 286 287 288 289 290
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

L
limeng 已提交
291 292
### invert

L
limeng 已提交
293
invert(): Matrix2D
L
limeng 已提交
294 295 296 297 298

得到当前矩阵的逆矩阵。

从API version 9开始,该接口支持在ArkTS卡片中使用。

L
limeng 已提交
299 300 301 302
**返回值:**

| 类型                  | 说明         |
| --------------------- | ------------ |
L
limeng 已提交
303
| [Matrix2D](#matrix2d) | 逆矩阵结果。 |
L
limeng 已提交
304 305 306

**示例:**

L
limeng 已提交
307
```ts
L
limeng 已提交
308 309 310 311 312 313
// xxx.ets
@Entry
@Component
struct Matrix2DInvert {
  @State message: string = 'Matrix2D Invert'

L
liuliu 已提交
314
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
315 316
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
317 318
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
319 320 321 322 323 324 325 326 327
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix invert")
          .onClick(() => {
L
liuliu 已提交
328
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
            matrix.scaleX = 2
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 10
            matrix.translateY = 20
            matrix.invert()
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

L
limeng 已提交
346
### multiply<sup>(deprecated) </sup>
L
limeng 已提交
347

L
limeng 已提交
348
multiply(other?: Matrix2D): Matrix2D
L
limeng 已提交
349 350 351

当前矩阵与目标矩阵相乘。

L
limeng 已提交
352
从API version 9开始,该接口支持在ArkTS卡片中使用。该接口为空接口。
L
limeng 已提交
353 354 355 356 357 358 359 360 361

该接口从API version 10开始废弃。

**参数:**

| 参数  | 类型     | 必填 | 默认值 | 描述       |
| ----- | -------- | ---- | ------ | ---------- |
| other | Matrix2D | 否   | null   | 目标矩阵。 |

L
limeng 已提交
362 363 364 365
**返回值:**

| 类型                  | 说明           |
| --------------------- | -------------- |
L
limeng 已提交
366
| [Matrix2D](#matrix2d) | 相乘结果矩阵。 |
L
limeng 已提交
367 368 369

**示例:**

L
limeng 已提交
370
```ts
L
limeng 已提交
371 372 373 374 375 376
// xxx.ets
@Entry
@Component
struct Matrix2DMultiply {
  @State message: string = 'Matrix2D Multiply'

L
liuliu 已提交
377
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
378 379
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
380 381
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
382 383 384 385 386 387 388 389 390
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix multiply")
          .onClick(() => {
L
liuliu 已提交
391
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
392 393 394 395 396 397
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
L
liuliu 已提交
398
            let other: Matrix2D = new Matrix2D()
L
limeng 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
            other.scaleX = 2
            other.scaleY = 2
            other.rotateX = 0
            other.rotateY = 0
            other.translateX = 10
            other.translateY = 10
            other.multiply(other)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
### rotate<sup>(deprecated) </sup>

rotate(rx?: number, ry?: number): Matrix2D

对当前矩阵进行旋转运算。

从API version 9开始,该接口支持在ArkTS卡片中使用。该接口为空接口。

该接口从API version 10开始废弃,推荐使用[rotate](#rotate10)

**参数:**

| 参数 | 类型   | 必填 | 默认值 | 描述                             |
| ---- | ------ | ---- | ------ | -------------------------------- |
| rx   | number | 否   | 0      | 旋转点的水平方向坐标,单位为vp。 |
| ry   | number | 否   | 0      | 旋转点的垂直方向坐标,单位为vp。 |

**返回值:**

| 类型                  | 说明                 |
| --------------------- | -------------------- |
| [Matrix2D](#matrix2d) | 旋转后结果矩阵对象。 |

**示例:**

```ts
// xxx.ets
@Entry
@Component
struct Matrix2DRotate {
  @State message: string = 'Matrix2D Rotate'

L
liuliu 已提交
448
  printMatrix(title: string, matrix: Matrix2D) {
449 450 451 452 453 454 455 456 457 458 459 460 461
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix rotate")
          .onClick(() => {
L
liuliu 已提交
462
            let matrix : Matrix2D = new Matrix2D()
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
            matrix.rotate(10, 10)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

L
limeng 已提交
480 481
### rotate<sup>10+</sup>

L
limeng 已提交
482
rotate(degree: number, rx?: number, ry?: number): Matrix2D
L
limeng 已提交
483 484 485

以旋转点为中心、对当前矩阵进行右乘旋转运算。

L
limeng 已提交
486
从API version 10开始,该接口支持在ArkTS卡片中使用。
L
limeng 已提交
487 488 489 490 491 492 493 494 495

**参数:**

| 参数   | 类型   | 必填 | 默认值 | 描述                                                         |
| ------ | ------ | ---- | ------ | ------------------------------------------------------------ |
| degree | number | 是   | 0      | 旋转角度,单位为弧度。顺时针方向为正角度,可以通过Math.PI&nbsp;/&nbsp;180将角度转换为弧度值。 |
| rx     | number | 否   | 0      | 旋转点的水平方向坐标,单位为vp。                             |
| ry     | number | 否   | 0      | 旋转点的垂直方向坐标,单位为vp。                             |

L
limeng 已提交
496 497 498 499
**返回值:**

| 类型                  | 说明                 |
| --------------------- | -------------------- |
L
limeng 已提交
500
| [Matrix2D](#matrix2d) | 旋转后结果矩阵对象。 |
L
limeng 已提交
501 502 503

**示例:**

L
limeng 已提交
504
```ts
L
limeng 已提交
505 506 507 508 509 510
// xxx.ets
@Entry
@Component
struct Matrix2DRotate {
  @State message: string = 'Matrix2D Rotate'

L
liuliu 已提交
511
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
512 513
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
514 515
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
516 517 518 519 520 521 522 523 524
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix rotate")
          .onClick(() => {
L
liuliu 已提交
525
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
            matrix.rotate(90 / Math.PI, 10, 10)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

L
limeng 已提交
543 544
### translate

L
limeng 已提交
545
translate(tx?: number, ty?: number): Matrix2D
L
limeng 已提交
546 547 548 549 550 551 552 553 554 555 556 557

对当前矩阵进行左乘平移运算。

从API version 9开始,该接口支持在ArkTS卡片中使用。

**参数:**

| 参数 | 类型   | 必填 | 默认值 | 描述                         |
| ---- | ------ | ---- | ------ | ---------------------------- |
| tx   | number | 否   | 0      | 水平方向平移距离,单位为vp。 |
| ty   | number | 否   | 0      | 垂直方向平移距离,单位为vp。 |

L
limeng 已提交
558 559 560 561
**返回值:**

| 类型                  | 说明                 |
| --------------------- | -------------------- |
L
limeng 已提交
562
| [Matrix2D](#matrix2d) | 平移后结果矩阵对象。 |
L
limeng 已提交
563 564 565

**示例:**

L
limeng 已提交
566
```ts
L
limeng 已提交
567 568 569 570 571 572
// xxx.ets
@Entry
@Component
struct Matrix2DTranslate {
  @State message: string = 'Matrix2D Translate'

L
liuliu 已提交
573
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
574 575
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
576 577
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
578 579 580 581 582 583 584 585 586
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix translate")
          .onClick(() => {
L
liuliu 已提交
587
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
            matrix.translate(100, 100)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

L
limeng 已提交
605 606
### scale

L
limeng 已提交
607
scale(sx?: number, sy?: number): Matrix2D
L
limeng 已提交
608 609 610 611 612 613 614 615 616 617 618 619

对当前矩阵进行右乘缩放运算。

从API version 9开始,该接口支持在ArkTS卡片中使用。

**参数:**

| 参数 | 类型   | 必填 | 默认值 | 描述               |
| ---- | ------ | ---- | ------ | ------------------ |
| sx   | number | 否   | 1      | 水平缩放比例系数。 |
| sy   | number | 否   | 1      | 垂直缩放比例系数。 |

L
limeng 已提交
620 621 622 623
**返回值:**

| 类型                  | 说明               |
| --------------------- | ------------------ |
L
limeng 已提交
624
| [Matrix2D](#matrix2d) | 缩放结果矩阵对象。 |
L
limeng 已提交
625 626 627

**示例:**

L
limeng 已提交
628
```ts
L
limeng 已提交
629 630 631 632 633 634
// xxx.ets
@Entry
@Component
struct Matrix2DScale {
  @State message: string = 'Matrix2D Scale'

L
liuliu 已提交
635
  printMatrix(title: string, matrix: Matrix2D) {
L
limeng 已提交
636 637
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
638 639
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
640 641 642 643 644 645 646 647 648
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix scale")
          .onClick(() => {
L
liuliu 已提交
649
            let matrix : Matrix2D = new Matrix2D()
L
limeng 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
            matrix.scale(0.5, 0.5)
            this.printMatrix(this.message, matrix)
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
665
```