0023022: This is desirable to access OpenGl extensions and core API (1.2+) in one...
[occt.git] / src / OpenGl / OpenGl_telem_util.cxx
CommitLineData
7fd59977 1/***********************************************************************
2
3FONCTION :
4----------
5File OpenGl_telem_util :
6
7
8REMARQUES:
9----------
10
11
12HISTORIQUE DES MODIFICATIONS :
13--------------------------------
14xx-xx-xx : xxx ; Creation.
1507-02-96 : FMN ; - Ajout trace
16- Suppression code inutile
1708-03-96 : FMN ; - Ajout include manquant
1801-04-96 : CAL ; Integration MINSK portage WNT
1915-04-96 : CAL ; Integration travail PIXMAP de Jim ROTH
2022-04-96 : FMN ; Ajout TelReadImage TelDrawImage
2110-05-96 : CAL ; Ajout d'un nouveau delta dans les copies
22de pixels (voir CALL_DEF_DELTA)
2325-06-96 : FMN ; Suppression utilisation de glScissor.
2402-07-96 : FMN ; Suppression WSWSHeight et WSWSWidth
25Suppression glViewport inutile.
2618-07-96 : FMN ; Suppression TelFlush inutile.
2708-07-96 : FMN ; Suppression de OPENGL_DEBUG inutile avec la nouvelle
28version de ogldebug.
2924-10-96 : CAL ; Portage WNT
3023-01-97 : CAL ; Suppression de TelClearViews dans TelCopyBuffers
3130-01-97 : FMN ; Ajout commentaires + WNT.
3212-02-97 : FMN ; Suppression TelEnquireFacilities()
3322-04-97 : FMN ; Ajout affichage du cadre pour la copie de buffer
3430-06-97 : FMN ; Suppression OpenGl_telem_light.h
3518-07-97 : FMN ; Utilisation de la toolkit sur les lights
3607-10-97 : FMN ; Simplification WNT + correction Transient
3705-12-97 : FMN ; PRO11168: Suppression TglActiveWs pour project/unproject
3823-12-97 : FMN ; Suppression TelSetFrontFaceAttri et TelSetBackFaceAttri
3930-12-97 : FMN ; CTS18312: Correction back material
4004-05-98 : CAL ; Contournement bug SGI octane bavure de pixels (PRO12899)
4130-09-98 : CAL ; Optimisation pour eviter de charger inutilement
42les matrices de la vue.
4319-10-98 : FMN ; Suppression de glPixelTransferi dans TelEnable() car cela
44rentre en conflit avec l'utilisation d'une image de fond.
4502.14.100 : JR : Warnings on WNT truncations from double to float
4608-03-01 : GG ; BUC60823 Avoid crash in the normal computation method
47when a face has confused or aligned points.
48
49************************************************************************/
50
d64e6d05 51#include <stdio.h>
52
5f8b738e 53#include <OpenGl_GlCore11.hxx>
7fd59977 54
7fd59977 55#include <OpenGl_telem_util.hxx>
2166f0fa
SK
56#include <InterfaceGraphic_Graphic3d.hxx>
57#include <InterfaceGraphic_Visual3d.hxx>
7fd59977 58
7fd59977 59#define GPRECIS 0.000001
60Tint TelGetPolygonNormal(tel_point pnts, Tint* indexs, Tint npnt, Tfloat *norm ) {
61 Tint status=0;
62
63 norm[0] = norm[1] = norm[2] = 0.;
64 if( npnt > 2 ) {
65 Tfloat a[3], b[3], c[3];
66 Tint i,j,i0,ii=0,jj;
67
68 i0 = 0; if( indexs ) i0 = indexs[0];
69 for( i=1 ; i<npnt ; i++ ) {
70 ii = i; if( indexs ) ii = indexs[i];
71 vecsub( a, pnts[ii].xyz, pnts[i0].xyz );
72 if( vecmg2(a) > GPRECIS ) break;
73 }
74 if( i < npnt-1 ) {
75 for( j=i+1 ; j<npnt ; j++ ) {
76 jj = j; if( indexs ) jj = indexs[j];
77 vecsub( b, pnts[jj].xyz, pnts[i0].xyz );
78 vecsub( c, pnts[jj].xyz, pnts[ii].xyz );
79 if( (vecmg2(b) > GPRECIS) && (vecmg2(c) > GPRECIS) ) break;
80 }
81 if( j < npnt ) {
82 Tfloat d;
83 veccrs( norm, a, b );
84 d = vecnrmd( norm, d );
85 status = (d > 0.) ? 1 : 0;
86 }
87 }
88 }
89#ifdef DEB
90 if( !status )
91 printf(" *** OpenGl_TelGetPolygonNormal.has found confused or aligned points\n");
92#endif
93
94 return status;
95}
96
97Tint TelGetNormal(Tfloat *data1, Tfloat *data2, Tfloat *data3, Tfloat *norm ) {
98 Tfloat a[3], b[3];
99 Tint status=0;
100
101 norm[0] = norm[1] = norm[2] = 0.;
102 vecsub( a, data2, data1 );
103 vecsub( b, data3, data2 );
104 if( (vecmg2(a) > GPRECIS) && (vecmg2(b) > GPRECIS) ) {
105 Tfloat d;
106 veccrs( norm, a, b );
107 d = vecnrmd( norm, d );
108 status = (d > 0.) ? 1 : 0;
109 }
110#ifdef DEB
111 if( !status )
112 printf(" *** OpenGl_TelGetNormal.has found confused or aligned points\n");
113#endif
114
115 return status;
116}
7fd59977 117
2166f0fa 118void TelMultiplymat3 (Tmatrix3 c, Tmatrix3 a, Tmatrix3 b)
7fd59977 119{
120 Tint row, col, i;
121 Tmatrix3 res;
122 Tint dim = 4;
123
124 /* on multiplie d'abord les 2 matrices dim x dim */
125 for (row = 0; row < dim; row++) {
126 for (col = 0; col < dim; col++) {
127 Tfloat sum = ( float )0.0;
128 for (i = 0; i < dim; i++)
129 sum += a[row][i] * b[i][col];
130 res[row][col] = sum;
131 }
132 }
133
134 /* on copie ensuite le resultat */
135 matcpy (c, res);
136
137 return;
138}