Home
last modified time | relevance | path

Searched refs:m_Matrix (Results 1 – 25 of 154) sorted by relevance

1234567

/dports/audio/spiralsynthmodular/spiralmodular-0.2.2/SpiralSound/Plugins/MatrixPlugin/
H A DMatrixPlugin.C104 m_Matrix[n].Length=64; in MatrixPlugin()
105 m_Matrix[n].Speed=1.0f; in MatrixPlugin()
106 m_Matrix[n].Octave=0; in MatrixPlugin()
112 m_Matrix[n].Volume[x][y]=1; in MatrixPlugin()
335 m_Matrix[m_GUICurrent].Length = m_Matrix[m_CopyPattern].Length; in PastePattern()
336 m_Matrix[m_GUICurrent].Speed = m_Matrix[m_CopyPattern].Speed; in PastePattern()
337 m_Matrix[m_GUICurrent].Octave = m_Matrix[m_CopyPattern].Octave; in PastePattern()
340 m_Matrix[m_GUICurrent].Matrix[x][y] = m_Matrix[m_CopyPattern].Matrix[x][y]; in PastePattern()
400 s<<m_Matrix[n].Length<<" "<<m_Matrix[n].Speed<<" "<<m_Matrix[n].Octave<<endl; in StreamOut()
406 if (m_Matrix[n].Matrix[x][y]) s<<x<<" "<<y<<" "<<m_Matrix[n].Volume[x][y]<<" "; in StreamOut()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/include/
H A DitkVariableSizeMatrix.h115 return m_Matrix(row, col); in operator()
127 return m_Matrix[i];
133 return m_Matrix[i];
139 return m_Matrix; in GetVnlMatrix()
145 return m_Matrix; in GetVnlMatrix()
151 m_Matrix.set_identity(); in SetIdentity()
157 m_Matrix.fill(value); in Fill()
163 m_Matrix = matrix;
178 m_Matrix = matrix.m_Matrix;
201 VariableSizeMatrix(const Self & matrix):m_Matrix(matrix.m_Matrix) {} in VariableSizeMatrix()
[all …]
H A DitkMatrix.h117 { m_Matrix *= value; }
131 m_Matrix /= value;
158 return m_Matrix[i];
164 return m_Matrix[i];
170 return m_Matrix; in GetVnlMatrix()
176 return m_Matrix; in GetVnlMatrix()
194 m_Matrix = matrix;
213 if ( Math::NotExactlyEquals(m_Matrix(r, c), matrix.m_Matrix(r, c)) )
243 m_Matrix = matrix.m_Matrix;
268 Matrix(const Self & matrix):m_Matrix(matrix.m_Matrix) {} in Matrix()
[all …]
H A DitkVariableSizeMatrix.hxx29 m_Matrix(rows, cols) {} in VariableSizeMatrix()
78 result = m_Matrix * matrix.m_Matrix; in operator *()
103 result.m_Matrix(r, c) = m_Matrix(r, c) + matrix.m_Matrix(r, c); in operator +()
129 m_Matrix(r, c) += matrix.m_Matrix(r, c); in operator +=()
156 result.m_Matrix(r, c) = m_Matrix(r, c) - matrix.m_Matrix(r, c); in operator -()
182 m_Matrix(r, c) -= matrix.m_Matrix(r, c); in operator -=()
197 m_Matrix(r, c) = -m_Matrix(r, c); in operator -()
211 return m_Matrix * matrix; in operator *()
222 m_Matrix *= matrix.m_Matrix; in operator *=()
233 m_Matrix *= matrix; in operator *=()
[all …]
H A DitkMatrix.hxx40 sum += m_Matrix(r, c) * vect[c]; in operator *()
61 sum += m_Matrix(r, c) * pnt[c]; in operator *()
103 sum += m_Matrix(r, c) * covect[c]; in operator *()
136 result.m_Matrix(r, c) = m_Matrix(r, c) + matrix.m_Matrix(r, c); in operator +()
154 m_Matrix(r, c) += matrix.m_Matrix(r, c); in operator +=()
174 result.m_Matrix(r, c) = m_Matrix(r, c) - matrix.m_Matrix(r, c); in operator -()
192 m_Matrix(r, c) -= matrix.m_Matrix(r, c); in operator -=()
206 return m_Matrix * matrix; in operator *()
217 m_Matrix *= matrix.GetVnlMatrix(); in operator *=()
228 m_Matrix *= matrix; in operator *=()
[all …]
/dports/games/flightgear/flightgear-2020.3.11/utils/fgpanel/
H A DGL_utils.cxx31 m_Matrix[m_Current_Matrix_Mode].push (Tmp); in GL_utils()
173 m_Matrix[m_Current_Matrix_Mode].top ().m[0][0] = 1.0f; in glLoadIdentity()
174 m_Matrix[m_Current_Matrix_Mode].top ().m[1][1] = 1.0f; in glLoadIdentity()
219m_Matrix[m_Current_Matrix_Mode].top ().m[3][0] += (m_Matrix[m_Current_Matrix_Mode].top ().m[0][0] … in glTranslatef()
223m_Matrix[m_Current_Matrix_Mode].top ().m[3][1] += (m_Matrix[m_Current_Matrix_Mode].top ().m[0][1] … in glTranslatef()
227m_Matrix[m_Current_Matrix_Mode].top ().m[3][2] += (m_Matrix[m_Current_Matrix_Mode].top ().m[0][2] … in glTranslatef()
231m_Matrix[m_Current_Matrix_Mode].top ().m[3][3] += (m_Matrix[m_Current_Matrix_Mode].top ().m[0][3] … in glTranslatef()
343 m_Matrix[m_Current_Matrix_Mode].push (m_Matrix[m_Current_Matrix_Mode].top ()); in glPushMatrix()
350 m_Matrix[m_Current_Matrix_Mode].pop (); in glPopMatrix()
357 return &(m_Matrix[mode].top ().m[0][0]); in get_top_matrix()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/chart2/source/view/main/
H A DLinear3DTransformation.cxx30 : m_Matrix(rHomMatrix) in Linear3DTransformation()
49 fZwi = m_Matrix.Line1.Column1 * fX in transform()
50 + m_Matrix.Line1.Column2 * fY in transform()
51 + m_Matrix.Line1.Column3 * fZ in transform()
52 + m_Matrix.Line1.Column4; in transform()
55 fZwi = m_Matrix.Line2.Column1 * fX in transform()
56 + m_Matrix.Line2.Column2 * fY in transform()
57 + m_Matrix.Line2.Column3 * fZ in transform()
58 + m_Matrix.Line2.Column4; in transform()
64 + m_Matrix.Line3.Column4; in transform()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/chart2/source/view/main/
H A DLinear3DTransformation.cxx31 : m_Matrix(rHomMatrix) in Linear3DTransformation()
50 fZwi = m_Matrix.Line1.Column1 * fX in transform()
51 + m_Matrix.Line1.Column2 * fY in transform()
52 + m_Matrix.Line1.Column3 * fZ in transform()
53 + m_Matrix.Line1.Column4; in transform()
56 fZwi = m_Matrix.Line2.Column1 * fX in transform()
57 + m_Matrix.Line2.Column2 * fY in transform()
58 + m_Matrix.Line2.Column3 * fZ in transform()
59 + m_Matrix.Line2.Column4; in transform()
65 + m_Matrix.Line3.Column4; in transform()
[all …]
/dports/games/ultimatestunts/ultimatestunts-srcdata-0771/shared/
H A Dgeneralmatrix.cpp40 m_Matrix.push_back(v); in CGeneralMatrix()
94 float aip = m_Matrix[i][p]; in solveGauss()
103 float aii = m_Matrix[i][i]; in solveGauss()
672 float t = m_Matrix[i][k]; in swaprow()
673 m_Matrix[i][k] = m_Matrix[j][k]; in swaprow()
674 m_Matrix[j][k] = t; in swaprow()
685 m_Matrix[i][k] += mul * m_Matrix[j][k]; in addrow()
692 m_Matrix[i][j] = value; in setElement()
697 return m_Matrix[i][j]; in getElement()
703 m_Matrix[i].erase(m_Matrix[i].begin() + n); in removeRowCol()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/core/fxge/dib/
H A Dcfx_imagerenderer.cpp27 m_Matrix(matrix), in CFX_ImageRenderer()
39 if ((fabs(m_Matrix.b) >= 0.5f || m_Matrix.a == 0) || in CFX_ImageRenderer()
40 (fabs(m_Matrix.c) >= 0.5f || m_Matrix.d == 0)) { in CFX_ImageRenderer()
41 if (fabs(m_Matrix.a) < fabs(m_Matrix.b) / 20 && in CFX_ImageRenderer()
42 fabs(m_Matrix.d) < fabs(m_Matrix.c) / 20 && fabs(m_Matrix.a) < 0.5f && in CFX_ImageRenderer()
43 fabs(m_Matrix.d) < 0.5f) { in CFX_ImageRenderer()
49 m_Matrix.c > 0, m_Matrix.b < 0); in CFX_ImageRenderer()
51 true, m_Matrix.c > 0, m_Matrix.b < 0, m_bRgbByteOrder, in CFX_ImageRenderer()
61 pSource, m_Matrix, options, &m_ClipBox); in CFX_ImageRenderer()
66 if (m_Matrix.a < 0) in CFX_ImageRenderer()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/core/fxge/dib/
H A Dcfx_imagerenderer.cpp26 m_Matrix(matrix), in CFX_ImageRenderer()
38 if ((fabs(m_Matrix.b) >= 0.5f || m_Matrix.a == 0) || in CFX_ImageRenderer()
39 (fabs(m_Matrix.c) >= 0.5f || m_Matrix.d == 0)) { in CFX_ImageRenderer()
40 if (fabs(m_Matrix.a) < fabs(m_Matrix.b) / 20 && in CFX_ImageRenderer()
41 fabs(m_Matrix.d) < fabs(m_Matrix.c) / 20 && fabs(m_Matrix.a) < 0.5f && in CFX_ImageRenderer()
42 fabs(m_Matrix.d) < 0.5f) { in CFX_ImageRenderer()
48 m_Matrix.c > 0, m_Matrix.b < 0); in CFX_ImageRenderer()
50 true, m_Matrix.c > 0, m_Matrix.b < 0, m_bRgbByteOrder, in CFX_ImageRenderer()
60 pSource, m_Matrix, options, &m_ClipBox); in CFX_ImageRenderer()
65 if (m_Matrix.a < 0) in CFX_ImageRenderer()
[all …]
/dports/multimedia/Bento4/Bento4-1.6.0-639/Source/C++/Core/
H A DAp4TkhdAtom.cpp85 m_Matrix[i] = matrix[i]; in AP4_TkhdAtom()
89 m_Matrix[0] = 0x00010000; in AP4_TkhdAtom()
90 m_Matrix[1] = 0; in AP4_TkhdAtom()
91 m_Matrix[2] = 0; in AP4_TkhdAtom()
92 m_Matrix[3] = 0; in AP4_TkhdAtom()
93 m_Matrix[4] = 0x00010000; in AP4_TkhdAtom()
94 m_Matrix[5] = 0; in AP4_TkhdAtom()
95 m_Matrix[6] = 0; in AP4_TkhdAtom()
96 m_Matrix[7] = 0; in AP4_TkhdAtom()
97 m_Matrix[8] = 0x40000000; in AP4_TkhdAtom()
[all …]
H A DAp4MvhdAtom.cpp73 m_Matrix[0] = 0x00010000; in AP4_MvhdAtom()
74 m_Matrix[1] = 0; in AP4_MvhdAtom()
75 m_Matrix[2] = 0; in AP4_MvhdAtom()
76 m_Matrix[3] = 0; in AP4_MvhdAtom()
77 m_Matrix[4] = 0x00010000; in AP4_MvhdAtom()
78 m_Matrix[5] = 0; in AP4_MvhdAtom()
79 m_Matrix[6] = 0; in AP4_MvhdAtom()
80 m_Matrix[7] = 0; in AP4_MvhdAtom()
81 m_Matrix[8] = 0x40000000; in AP4_MvhdAtom()
127 stream.ReadUI32(m_Matrix[i]); in AP4_MvhdAtom()
[all …]
H A DAp4TkhdAtom.h90 …const AP4_SI32* GetMatrix() const { return m_Matrix; … in GetMatrix()
91 … SetMatrix(const AP4_SI32* matrix) { AP4_CopyMemory(m_Matrix, matrix, 9*sizeof(m_Matrix[0])… in SetMatrix()
93 x = (float)(*(int*)&m_Matrix[6]) / 65536; in GetTranslation()
94 y = (float)(*(int*)&m_Matrix[7]) / 65536; in GetTranslation()
115 AP4_SI32 m_Matrix[9]; variable
/dports/multimedia/kodi-addon-inputstream.adaptive/inputstream.adaptive-19.0.1-Matrix/lib/libbento4/Core/
H A DAp4TkhdAtom.cpp84 m_Matrix[i] = matrix[i]; in AP4_TkhdAtom()
88 m_Matrix[0] = 0x00010000; in AP4_TkhdAtom()
89 m_Matrix[1] = 0; in AP4_TkhdAtom()
90 m_Matrix[2] = 0; in AP4_TkhdAtom()
91 m_Matrix[3] = 0; in AP4_TkhdAtom()
92 m_Matrix[4] = 0x00010000; in AP4_TkhdAtom()
93 m_Matrix[5] = 0; in AP4_TkhdAtom()
94 m_Matrix[6] = 0; in AP4_TkhdAtom()
95 m_Matrix[7] = 0; in AP4_TkhdAtom()
96 m_Matrix[8] = 0x40000000; in AP4_TkhdAtom()
[all …]
H A DAp4MvhdAtom.cpp72 m_Matrix[0] = 0x00010000; in AP4_MvhdAtom()
73 m_Matrix[1] = 0; in AP4_MvhdAtom()
74 m_Matrix[2] = 0; in AP4_MvhdAtom()
75 m_Matrix[3] = 0; in AP4_MvhdAtom()
76 m_Matrix[4] = 0x00010000; in AP4_MvhdAtom()
77 m_Matrix[5] = 0; in AP4_MvhdAtom()
78 m_Matrix[6] = 0; in AP4_MvhdAtom()
79 m_Matrix[7] = 0; in AP4_MvhdAtom()
80 m_Matrix[8] = 0x40000000; in AP4_MvhdAtom()
124 stream.ReadUI32(m_Matrix[i]); in AP4_MvhdAtom()
[all …]
H A DAp4TkhdAtom.h90 …const AP4_SI32* GetMatrix() const { return m_Matrix; … in GetMatrix()
91 … SetMatrix(const AP4_SI32* matrix) { AP4_CopyMemory(m_Matrix, matrix, 9*sizeof(m_Matrix[0])… in SetMatrix()
93 x = (float)(*(int*)&m_Matrix[6]) / 65536; in GetTranslation()
94 y = (float)(*(int*)&m_Matrix[7]) / 65536; in GetTranslation()
115 AP4_SI32 m_Matrix[9]; variable
/dports/lang/spidermonkey60/firefox-60.9.0/modules/pdfium/pdfium/core/fpdfapi/page/
H A Dcpdf_textstate.cpp37 return m_Ref.GetObject()->m_Matrix; in GetMatrix()
41 return m_Ref.GetPrivateCopy()->m_Matrix; in GetMutableMatrix()
99 m_Matrix[0] = m_Matrix[3] = 1.0f; in TextData()
100 m_Matrix[1] = m_Matrix[2] = 0; in TextData()
113 m_Matrix[i] = that.m_Matrix[i]; in TextData()
142 return FXSYS_fabs(FXSYS_sqrt2(m_Matrix[1], m_Matrix[3]) * m_FontSize); in GetFontSizeV()
146 return FXSYS_fabs(FXSYS_sqrt2(m_Matrix[0], m_Matrix[2]) * m_FontSize); in GetFontSizeH()
150 return FXSYS_atan2(m_Matrix[2], m_Matrix[0]); in GetBaselineAngle()
154 return GetBaselineAngle() + FXSYS_atan2(m_Matrix[1], m_Matrix[3]); in GetShearAngle()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/IO/CSV/include/
H A DitkCSVArray2DDataObject.hxx98 unsigned int max_rows = this->m_Matrix.rows() - 1; in GetRow()
104 unsigned int vector_size = this->m_Matrix.cols(); in GetRow()
107 row.push_back(this->m_Matrix[row_index][i]); in GetRow()
135 unsigned int vector_size = this->m_Matrix.rows(); in GetColumn()
160 if ( row > this->m_Matrix.rows() - 1) in GetData()
165 else if ( column > this->m_Matrix.cols()-1 ) in GetData()
170 return this->m_Matrix[row][column]; in GetData()
251 os << this->m_Matrix[i][j] << indent; in PrintSelf()
262 this->m_Matrix.SetSize(rows,columns); in SetMatrixSize()
270 this->m_Matrix[row_index][column_index] = item; in SetMatrixData()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/cobalt/
H A Ddist.cpp173 m_Matrix.Resize(num_queries, num_queries); in ComputeMatrix()
174 m_Matrix.Set(1.0); in ComputeMatrix()
194 m_Matrix(j,k) -= 0.5 * align_score * in ComputeMatrix()
201 m_Matrix(i, i) = 0.0; in ComputeMatrix()
205 if (fabs(m_Matrix(j, i)) < 1e-6) in ComputeMatrix()
206 m_Matrix(j, i) = 0; in ComputeMatrix()
208 if (m_Matrix(j, i) < 0) in ComputeMatrix()
209 m_Matrix(j, i) = 0; in ComputeMatrix()
211 m_Matrix(i, j) = m_Matrix(j, i); in ComputeMatrix()
/dports/lang/spidermonkey60/firefox-60.9.0/modules/pdfium/pdfium/core/fpdfapi/render/
H A Dcpdf_devicebuffer.cpp31 m_Matrix.Translate(-pRect->left, -pRect->top); in Initialize()
41 m_Matrix.Scale((FX_FLOAT)(max_dpi) / dpih, 1.0f); in Initialize()
43 m_Matrix.Scale(1.0f, (FX_FLOAT)(max_dpi) / (FX_FLOAT)dpiv); in Initialize()
47 m_Matrix.Concat(CFX_Matrix(FXSYS_fabs(ctm.a), 0, 0, FXSYS_fabs(ctm.d), 0, 0)); in Initialize()
50 m_Matrix.TransformRect(rect); in Initialize()
60 if (m_Matrix.a == 1.0f && m_Matrix.d == 1.0f) { in OutputToDevice()
71 m_pContext->GetBackground(&buffer, m_pObject, nullptr, &m_Matrix); in OutputToDevice()
H A Dcpdf_scaledrenderbuffer.cpp34 m_Matrix.Translate(-pRect.left, -pRect.top); in Initialize()
43 m_Matrix.Scale((FX_FLOAT)(max_dpi) / dpih, 1.0f); in Initialize()
45 m_Matrix.Scale(1.0f, (FX_FLOAT)(max_dpi) / (FX_FLOAT)dpiv); in Initialize()
56 m_Matrix.TransformRect(rect); in Initialize()
68 m_Matrix.Scale(0.5f, 0.5f); in Initialize()
71 &m_Matrix); in Initialize()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/core/fpdfapi/fpdf_page/
H A Dcpdf_textstate.cpp40 FX_FLOAT* m_Matrix = GetMatrix(); in GetBaselineAngle() local
41 return FXSYS_atan2(m_Matrix[2], m_Matrix[0]); in GetBaselineAngle()
45 FX_FLOAT* m_Matrix = GetMatrix(); in GetShearAngle() local
46 FX_FLOAT shear_angle = FXSYS_atan2(m_Matrix[1], m_Matrix[3]); in GetShearAngle()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Transform/include/
H A DitkMatrixOffsetTransformBase.hxx36 m_Matrix.SetIdentity(); in MatrixOffsetTransformBase()
55 m_Matrix.SetIdentity(); in MatrixOffsetTransformBase()
73 m_Matrix = matrix; in MatrixOffsetTransformBase()
101 os << m_Matrix[i][j] << " "; in PrintSelf()
130 m_Matrix.SetIdentity(); in SetIdentity()
151 m_Matrix = m_Matrix * other->m_Matrix; in Compose()
156 m_Matrix = other->m_Matrix * m_Matrix; in Compose()
175 return m_Matrix * point + m_Offset; in TransformPoint()
187 return m_Matrix * vect; in TransformVector()
199 return m_Matrix.GetVnlMatrix() * vect; in TransformVector()
[all …]
/dports/editors/texmaker/texmaker-5.0.3/pdfium/fpdfsdk/
H A Dfpdfeditimg.cpp58 pImgObj->m_Matrix.a = (FX_FLOAT)a; in FPDFImageObj_SetMatrix()
59 pImgObj->m_Matrix.b = (FX_FLOAT)b; in FPDFImageObj_SetMatrix()
60 pImgObj->m_Matrix.c = (FX_FLOAT)c; in FPDFImageObj_SetMatrix()
61 pImgObj->m_Matrix.d = (FX_FLOAT)d; in FPDFImageObj_SetMatrix()
62 pImgObj->m_Matrix.e = (FX_FLOAT)e; in FPDFImageObj_SetMatrix()
63 pImgObj->m_Matrix.f = (FX_FLOAT)f; in FPDFImageObj_SetMatrix()

1234567