いくつかの圧力測定値を表示するプログラムを作成しました。詳細視覚化のためにNURBSを使用したいと思います。だから私は私をオリエンテーションしました enter link description hereシャープGLのNURBSを使用
私のフィールドは40x48の正方形の範囲を持っています。したがって、40行と48列。 Z成分(高さ)は可変でなければならない。
しかし、私は私の場合にはパラメータを設定する方法がわからない
glMap2f(GL_MAP2_VERTEX_3, 0, 1, 3, 4, 0, 1, 12, 4, &ctrlpoints[0][0][0]);
// Parameter:
// target:
// What the control points represent (e.g. MAP2_VERTEX_3).
//
// u1:
// Range of the variable 'u'.
//
// u2:
// Range of the variable 'u.
//
// ustride:
// Offset between beginning of one control point and the next.
//
// uorder:
// The degree plus one.
//
// v1:
// Range of the variable 'v'.
//
// v2:
// Range of the variable 'v'.
//
// vstride:
// Offset between beginning of one control point and the next.
//
// vorder:
// The degree plus one.
//
// points:
// The data for the points.
を定義する方法を理解していません。 たとえば、u1とu2は何ですか?または私のControlPointsは何ですか?あなたはパラメータのより詳細な説明を見つけることができます。このリンクで