Home
last modified time | relevance | path

Searched refs:ctrls (Results 1 – 5 of 5) sorted by relevance

/external/sonivox/jet_tools/JetCreator/
DJetDialogs.py44 ctrls = getattr(JetDefs, ctrlList)
45 self.ctrls = {}
46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
52 … self.ctrls[Text].Bind(wx.EVT_BUTTON, getattr(callbackClass, Fct), self.ctrls[Text], id=Id)
54 self.ctrls[Text].SetDefault()
58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)…
62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi…
64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls…
[all …]
DJetCreator.py415 dlg.je.ctrls[JetDefs.F_MIDIFILE].Append(filename)
417 dlg.je.ctrls[JetDefs.F_DLSFILE].Append(library)
469 dlg.je.ctrls[JetDefs.F_MIDIFILE].Append(filename)
471 dlg.je.ctrls[JetDefs.F_DLSFILE].Append(library)
1140 self.jet_file.config.filename = dlg.je.ctrls[JetDefs.F_JETFILENAME].GetValue()
1141 self.jet_file.config.copyright = dlg.je.ctrls[JetDefs.F_COPYRIGHT].GetValue()
1142 … self.jet_file.config.chase_controllers = dlg.je.ctrls[JetDefs.F_CHASECONTROLLERS].GetValue()
1143 … self.jet_file.config.delete_empty_tracks = dlg.je.ctrls[JetDefs.F_DELETEEMPTYTRACKS].GetValue()
/external/eigen/unsupported/test/
Dsplines.cpp48 MatrixXd ctrls(8,2); in closed_spline2d() local
49 ctrls << -0.370967741935484, 0.236842105263158, in closed_spline2d()
57 ctrls.transposeInPlace(); in closed_spline2d()
59 return Spline<double, 2, Dynamic>(knots, ctrls); in closed_spline2d()
78 MatrixXd ctrls(8,3); in spline3d() local
79 ctrls << 0.959743958516081, 0.340385726666133, 0.585267750979777, in spline3d()
87 ctrls.transposeInPlace(); in spline3d()
89 return Spline<double, 3, Dynamic>(knots, ctrls); in spline3d()
/external/eigen/unsupported/Eigen/src/Splines/
DSpline.h60 …line(const OtherVectorType& knots, const OtherArrayType& ctrls) : m_knots(knots), m_ctrls(ctrls) {} in Spline() argument
68 m_knots(spline.knots()), m_ctrls(spline.ctrls()) {} in Spline()
78 const ControlPointVectorType& ctrls() const { return m_ctrls; } in ctrls() function
270 …const Block<const ControlPointVectorType,Dimension,Order> ctrl_pts(ctrls(),0,span-p,Dimension,p+1); in operator()
305 …const Block<const ControlPointVectorType,Dimension,Order> ctrl_pts(spline.ctrls(),0,span-p,Dimensi… in derivativesImpl()
DSplineFitting.h144 ControlPointVectorType ctrls = qr.solve(MatrixType(pts.transpose())).transpose(); in Interpolate() local
146 return SplineType(knots, ctrls); in Interpolate()