IOpenGLService::DrawExtremes

Use this method to internally update the clipping plane, projection matrix, and rendering matrix. Display external object inside the view by giving the extreme points (min and max point) of a bounding box to this function.

Compatibility

Cimatron 2026 or later

Syntax

void DrawExtremes(double[] iMinPnt, double[] iMaxPnt);

def DrawExtremes(System.Double[] iMinPnt, System.Double[] iMaxPnt )->None

Return Type

Return: void

 

   

Input Type

Input: double[]

iMinPnt - Variant that contains double type array of 3D points coordinates (min extreme point of the bounding box) 

Input: double[]

iMaxPnt - Variant that contains double type array of 3D points coordinates (max extreme point of bounding box) 

Remarks

This method should be called before rendering external objects.

Example