表示: Delphi C++
表示設定

System.Types.TMatrix

提供:XE2 API Documentation
移動: 案内, 検索

Delphi

  TMatrix = record
    case Integer of
      0: (M: TMatrixArray;);
      1: (m11, m12, m13: Single;
          m21, m22, m23: Single;
          m31, m32, m33: Single);
  end;

C++

struct DECLSPEC_DRECORD TMatrix{
#pragma pack(push,1)
union
{
struct
{
float m11;
float m12;
float m13;
float m21;
float m22;
float m23;
float m31;
float m32;
float m33;
};
struct
{
TMatrixArray M;
};
};
#pragma pack(pop)
};

プロパティ

種類 可視性 ソース ユニット
struct
class
public
System.Types.pas
System.Types.hpp
System.Types System.Types

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。

以前のバージョン
他の言語