ts-components-canvas-matrix2d.md 16.6 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
// xxx.ets
@Entry
@Component
struct Matrix2DScaleX {
  @State message: string = 'Matrix2D ScaleX'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
// xxx.ets
@Entry
@Component
struct Matrix2DScaleY {
  @State message: string = 'Matrix2D ScaleY'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
// xxx.ets
@Entry
@Component
struct Matrix2DRotateX {
  @State message: string = 'Matrix2D RotateX'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
// xxx.ets
@Entry
@Component
struct Matrix2DRotateY {
  @State message: string = 'Matrix2D RotateY'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
// xxx.ets
@Entry
@Component
struct Matrix2DTranslateX {
  @State message: string = 'Matrix2D TranslateX'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
// xxx.ets
@Entry
@Component
struct Matrix2DTranslateY {
  @State message: string = 'Matrix2D TranslateY'

  printMatrix(title, matrix) {
    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(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
// xxx.ets
@Entry
@Component
struct Matrix2DIdentity {
  @State message: string = 'Matrix2D Identity'

  printMatrix(title, matrix) {
    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(() => {
            var 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 314 315 316
// xxx.ets
@Entry
@Component
struct Matrix2DInvert {
  @State message: string = 'Matrix2D Invert'

  printMatrix(title, matrix) {
    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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix invert")
          .onClick(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 377 378 379
// xxx.ets
@Entry
@Component
struct Matrix2DMultiply {
  @State message: string = 'Matrix2D Multiply'

  printMatrix(title, matrix) {
    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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix multiply")
          .onClick(() => {
            var matrix : Matrix2D = new Matrix2D()
            matrix.scaleX = 1
            matrix.scaleY = 1
            matrix.rotateX = 0
            matrix.rotateY = 0
            matrix.translateX = 0
            matrix.translateY = 0
            var other: Matrix2D = new Matrix2D()
            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%')
  }
}
```

L
limeng 已提交
416 417
### rotate<sup>10+</sup>

L
limeng 已提交
418
rotate(degree: number, rx?: number, ry?: number): Matrix2D
L
limeng 已提交
419 420 421

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

L
limeng 已提交
422
从API version 10开始,该接口支持在ArkTS卡片中使用。
L
limeng 已提交
423 424 425 426 427 428 429 430 431

**参数:**

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

L
limeng 已提交
432 433 434 435
**返回值:**

| 类型                  | 说明                 |
| --------------------- | -------------------- |
L
limeng 已提交
436
| [Matrix2D](#matrix2d) | 旋转后结果矩阵对象。 |
L
limeng 已提交
437 438 439

**示例:**

L
limeng 已提交
440
```ts
L
limeng 已提交
441 442 443 444 445 446 447 448 449
// xxx.ets
@Entry
@Component
struct Matrix2DRotate {
  @State message: string = 'Matrix2D Rotate'

  printMatrix(title, matrix) {
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
450 451
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix rotate")
          .onClick(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 已提交
479 480
### translate

L
limeng 已提交
481
translate(tx?: number, ty?: number): Matrix2D
L
limeng 已提交
482 483 484 485 486 487 488 489 490 491 492 493

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

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

**参数:**

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

L
limeng 已提交
494 495 496 497
**返回值:**

| 类型                  | 说明                 |
| --------------------- | -------------------- |
L
limeng 已提交
498
| [Matrix2D](#matrix2d) | 平移后结果矩阵对象。 |
L
limeng 已提交
499 500 501

**示例:**

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

  printMatrix(title, matrix) {
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
512 513
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix translate")
          .onClick(() => {
            var matrix : Matrix2D = new Matrix2D()
            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 已提交
541 542
### scale

L
limeng 已提交
543
scale(sx?: number, sy?: number): Matrix2D
L
limeng 已提交
544 545 546 547 548 549 550 551 552 553 554 555

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

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

**参数:**

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

L
limeng 已提交
556 557 558 559
**返回值:**

| 类型                  | 说明               |
| --------------------- | ------------------ |
L
limeng 已提交
560
| [Matrix2D](#matrix2d) | 缩放结果矩阵对象。 |
L
limeng 已提交
561 562 563

**示例:**

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

  printMatrix(title, matrix) {
    console.log(title)
    console.log("Matrix [scaleX = " + matrix.scaleX + ", scaleY = " + matrix.scaleY +
L
limeng 已提交
574 575
                ", rotateX = " + matrix.rotateX + ", rotateY = " + matrix.rotateY +
                ", translateX = " + matrix.translateX + ", translateY = " + matrix.translateY + "]")
L
limeng 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
  }
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
        Button("matrix scale")
          .onClick(() => {
            var matrix : Matrix2D = new Matrix2D()
            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%')
  }
}
```