PathEngine home previous: iPathEngine::shapeIsValid()next: Interface iShape
Contents, API Reference, Interfaces, iPathEngine, unobstructedSpaceVersionIsCompatible

iPathEngine::unobstructedSpaceVersionIsCompatible()

Description

Used to check if persistent data saved out for unobstructed space from an older version of the library can be loaded into this version.

Syntax

bool unobstructedSpaceVersionIsCompatible(char const * data_Buffer, uint32_t data_BufferEntries);

Parameters

data_Buffer, data_BufferEntries (See Passing Arrays.) The data buffer to check.

Return Value

Returns true if the persistent data can be loaded into this version of the library, otherwise false.

Remarks

The buffer passed in must contain data previously saved out by iMesh::saveUnobstructedSpaceFor().

See Also

iMesh::loadUnobstructedSpaceFor()

C# Mapping

bool unobstructedSpaceVersionIsCompatible(byte[] data);

Java Mapping

boolean unobstructedSpaceVersionIsCompatible(byte[] data);

Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEnginenext: Interface iShape