Matrix.IsIdentity 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,這個值表示這個 Matrix 結構是否為單位矩陣。
public:
property bool IsIdentity { bool get(); };
public bool IsIdentity { get; }
member this.IsIdentity : bool
Public ReadOnly Property IsIdentity As Boolean
屬性值
如果 Matrix 結構是單位矩陣則為 true
,否則為 false
。 預設為 true
。
備註
識別矩陣在係數 [1,1],[2,2],[3,3,3] 中具有 1 的值,而其餘係數的值為 0。 這與設定 M11 和 M22 與 1 和 M12 、、 M21 OffsetX 和 OffsetY 相互關聯至 0。 在相依矩陣中,這是Windows Presentation Foundation (WPF) 用於 Matrix 結構的實作,係數 [3,1],[3,2],[3.3] 會分別隱含為 0,0,1。
1 | 0 | 0 |
0 | 1 | 0 |
0 | 0 | 1 |
對於識別矩陣, ToString 方法會傳回字串 「Identity」,而不是 的 Matrix 係數。