
A MeshTriangle Component would be convenient.
K
Moderator: Moderators
Yea I know, that's why I requested MeshTriangle .. since that's probably allot less work.The problem is that ZGEs internal mesh-format is limited to triangles.
Code: Select all
function Platform_LoadModule(const Name : PAnsiChar) : integer;
begin
//TODO: module support
{$if Defined(Linux) or Defined(Darwin)}
Result := Integer(dlopen( Name, RTLD_NOW));
{$else}
Result := 0;
{$endif}
end;
function Platform_GetModuleProc(Module : integer; const Name : PAnsiChar) : pointer;
begin
//TODO: module support
{$if Defined(Linux) or Defined(Darwin)}
Result := dlsym(Pointer(Module), Name );
{$else}
Result := 0;
{$endif}
end;