MDLSubmesh 构造函数

定义

重载

MDLSubmesh()

默认构造函数初始化此类的新实例。

MDLSubmesh(NSObjectFlag)

用于调用派生类的构造函数,以跳过初始化并仅分配 对象。

MDLSubmesh(IntPtr)

创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。

MDLSubmesh(MDLSubmesh, MDLIndexBitDepth, MDLGeometryType)

使用指定的参数创建新的 MDLSubmesh。

MDLSubmesh(IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial)
MDLSubmesh(String, IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial)
MDLSubmesh(String, IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial, MDLSubmeshTopology)

MDLSubmesh()

默认构造函数初始化此类的新实例。

[Foundation.Export("init")]
public MDLSubmesh ();
属性

适用于

MDLSubmesh(NSObjectFlag)

用于调用派生类的构造函数,以跳过初始化并仅分配 对象。

protected MDLSubmesh (Foundation.NSObjectFlag t);
new ModelIO.MDLSubmesh : Foundation.NSObjectFlag -> ModelIO.MDLSubmesh

参数

t
NSObjectFlag

未使用的 sentinel 值,传递 NSObjectFlag.Empty。

注解

当派生类在托管代码中完全构造对象并且仅希望运行时分配和初始化 NSObject 时,应调用此构造函数。 这是实现 Objective-C 使用的两步初始化过程所必需的,第一步是执行对象分配,第二步是初始化对象。 当开发人员调用采用 NSObjectFlag.Empty 的构造函数时,他们利用直接路径(一直指向 NSObject)来仅分配对象的内存,并将 Objective-C 和 C# 对象绑定在一起。 对象的实际初始化由开发人员决定。

绑定生成器通常使用此构造函数来分配对象,但会阻止进行实际初始化。 分配完成后,构造函数必须初始化 对象。 使用绑定生成器生成的构造函数,这意味着它会手动调用其中一个“init”方法来初始化对象。

如果对象使用 NSObjectFlag.Empty 路径链接起来,则开发人员负责完全初始化对象。

通常,如果开发人员的构造函数调用 NSObjectFlag.Empty 基实现,则它应调用 Objective-C init 方法。 如果不是这样,开发人员应改为链接到其类中的正确构造函数。

参数值将被忽略,仅确保执行的唯一代码是构造阶段是基本的 NSObject 分配和运行时类型注册。 通常,链接如下所示:

//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
	var initWithFrame = new Selector ("initWithFrame:").Handle;
	if (IsDirectBinding)
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
	else
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}

适用于

MDLSubmesh(IntPtr)

创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。

protected internal MDLSubmesh (IntPtr handle);
new ModelIO.MDLSubmesh : nativeint -> ModelIO.MDLSubmesh

参数

handle
IntPtr

nativeint

指向非托管对象的指针 (句柄) 。

注解

此构造函数由运行时基础结构 (GetNSObject(IntPtr)) 调用,为指向非托管 Objective-C 对象的指针创建新的托管表示形式。 开发人员不应直接调用此方法,而是应调用 GetNSObject 方法,因为它将阻止托管对象的两个实例指向同一本机对象。

适用于

MDLSubmesh(MDLSubmesh, MDLIndexBitDepth, MDLGeometryType)

使用指定的参数创建新的 MDLSubmesh。

[Foundation.Export("initWithMDLSubmesh:indexType:geometryType:")]
public MDLSubmesh (ModelIO.MDLSubmesh indexBuffer, ModelIO.MDLIndexBitDepth indexType, ModelIO.MDLGeometryType geometryType);
new ModelIO.MDLSubmesh : ModelIO.MDLSubmesh * ModelIO.MDLIndexBitDepth * ModelIO.MDLGeometryType -> ModelIO.MDLSubmesh

参数

indexBuffer
MDLSubmesh
indexType
MDLIndexBitDepth
geometryType
MDLGeometryType
属性

注解

indexType如果 或 geometryType 与 中的indexBuffer数据类型不匹配,则会创建一个新的缓冲区,并使用转换后的数据填充。

适用于

MDLSubmesh(IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial)

[Foundation.Export("initWithIndexBuffer:indexCount:indexType:geometryType:material:")]
public MDLSubmesh (ModelIO.IMDLMeshBuffer indexBuffer, nuint indexCount, ModelIO.MDLIndexBitDepth indexType, ModelIO.MDLGeometryType geometryType, ModelIO.MDLMaterial material);
new ModelIO.MDLSubmesh : ModelIO.IMDLMeshBuffer * nuint * ModelIO.MDLIndexBitDepth * ModelIO.MDLGeometryType * ModelIO.MDLMaterial -> ModelIO.MDLSubmesh

参数

indexBuffer
IMDLMeshBuffer
indexCount
System.System.UIntPtr System.unativeint
indexType
MDLIndexBitDepth
geometryType
MDLGeometryType
material
MDLMaterial

内容待定。

此参数可以为 null

属性

适用于

MDLSubmesh(String, IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial)

[Foundation.Export("initWithName:indexBuffer:indexCount:indexType:geometryType:material:")]
public MDLSubmesh (string name, ModelIO.IMDLMeshBuffer indexBuffer, nuint indexCount, ModelIO.MDLIndexBitDepth indexType, ModelIO.MDLGeometryType geometryType, ModelIO.MDLMaterial material);
new ModelIO.MDLSubmesh : string * ModelIO.IMDLMeshBuffer * nuint * ModelIO.MDLIndexBitDepth * ModelIO.MDLGeometryType * ModelIO.MDLMaterial -> ModelIO.MDLSubmesh

参数

name
String
indexBuffer
IMDLMeshBuffer
indexCount
System.System.UIntPtr System.unativeint
indexType
MDLIndexBitDepth
geometryType
MDLGeometryType
material
MDLMaterial

内容待定。

此参数可以为 null

属性

适用于

MDLSubmesh(String, IMDLMeshBuffer, nuint, MDLIndexBitDepth, MDLGeometryType, MDLMaterial, MDLSubmeshTopology)

[Foundation.Export("initWithName:indexBuffer:indexCount:indexType:geometryType:material:topology:")]
public MDLSubmesh (string name, ModelIO.IMDLMeshBuffer indexBuffer, nuint indexCount, ModelIO.MDLIndexBitDepth indexType, ModelIO.MDLGeometryType geometryType, ModelIO.MDLMaterial material, ModelIO.MDLSubmeshTopology topology);
new ModelIO.MDLSubmesh : string * ModelIO.IMDLMeshBuffer * nuint * ModelIO.MDLIndexBitDepth * ModelIO.MDLGeometryType * ModelIO.MDLMaterial * ModelIO.MDLSubmeshTopology -> ModelIO.MDLSubmesh

参数

name
String
indexBuffer
IMDLMeshBuffer
indexCount
System.System.UIntPtr System.unativeint
indexType
MDLIndexBitDepth
geometryType
MDLGeometryType
material
MDLMaterial

内容待定。

此参数可以为 null

topology
MDLSubmeshTopology

内容待定。

此参数可以为 null

属性

适用于