Description:

Sets a face normal vector at an index using three double-precision numbers.

Syntax:
public bool SetFaceNormal(
int index,
double x,
double y,
double z
)
Parameters:
  • index
  • Type: int
  • An index.
Returns:
Type: bool
True on success; False on error.
Available since:
5.0

Description:

Sets a face normal vector at an index using three single-precision numbers.

Syntax:
public bool SetFaceNormal(
int index,
float x,
float y,
float z
)
Parameters:
  • index
  • Type: int
  • An index.
  • x
  • Type: float
  • A x component.
  • y
  • Type: float
  • A y component.
  • z
  • Type: float
  • A z component.
Returns:
Type: bool
True on success; False on error.
Available since:
5.0

Description:

Sets a face normal vector at an index using a single-precision vector.

Syntax:
public bool SetFaceNormal(
int index,
Vector3d normal
)
Parameters:
  • index
  • Type: int
  • An index.
Returns:
Type: bool
True on success; False on error.
Available since:
5.0

Description:

Sets a face normal vector at an index using a single-precision vector.

Syntax:
public bool SetFaceNormal(
int index,
Vector3f normal
)
Parameters:
  • index
  • Type: int
  • An index.
Returns:
Type: bool
True on success; False on error.
Available since:
5.0

Nothing found