當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart Rectangle構造函數用法及代碼示例


dart:math 庫中Rectangle構造函數 的用法介紹如下。

用法:

const
      Rectangle<T extends num>(
   T left,    
   T top,    
   T width,    
   T height   
)

創建一個由 (left, top)(left+width, top+height) 跨越的矩形。

該矩形包含 x 坐標在 leftleft + width 之間以及 y 坐標在 toptop + height 之間的點,兩者都包括在內。

widthheight 應該是非負數。如果widthheight 為負數,則將它們鉗位為零。

如果 widthheight 為零,則 "rectangle" 僅包含單個點 (left, top)

例子:

var rectangle = const Rectangle(20, 50, 300, 600);
print(rectangle.left); // 20
print(rectangle.top); // 50
print(rectangle.right); // 320
print(rectangle.bottom); // 650

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Rectangle<T extends num> constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。