Home
last modified time | relevance | path

Searched refs:m_p10 (Results 1 – 8 of 8) sorted by relevance

/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/stdfx/
H A Dpins.h33 TPointD m_p10; variable
36 FourPoints() : m_p00(), m_p01(), m_p10(), m_p11() {} in FourPoints()
40 : m_p00(p00), m_p01(p01), m_p10(p10), m_p11(p11) {} in FourPoints()
43 return m_p00 == fp.m_p00 && m_p10 == fp.m_p10 && m_p01 == fp.m_p01 &&
H A Dpins.cpp491 s[0] = ss.m_p00, s[1] = ss.m_p01, s[2] = ss.m_p10, s[3] = ss.m_p11; in buildMatrixes()
492 d[0] = dd.m_p00, d[1] = dd.m_p01, d[2] = dd.m_p10, d[3] = dd.m_p11; in buildMatrixes()
612 den = perspectiveDen.x * from.m_p10.x + perspectiveDen.y * from.m_p10.y + 1; in computeTransformed()
614 fp.m_p10 = (1.0 / den) * (aff * from.m_p10); in computeTransformed()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-elasticbeanstalk/source/model/
H A DLatency.cpp38 m_p10(0.0), in Latency()
58 m_p10(0.0), in Latency()
115m_p10 = StringUtils::ConvertToDouble(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(p10No… in operator =()
162 … oStream << location << index << locationValue << ".P10=" << StringUtils::URLEncode(m_p10) << "&"; in OutputToStream()
199 oStream << location << ".P10=" << StringUtils::URLEncode(m_p10) << "&"; in OutputToStream()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-elasticbeanstalk/include/aws/elasticbeanstalk/model/
H A DLatency.h220 inline double GetP10() const{ return m_p10; } in GetP10()
232 inline void SetP10(double value) { m_p10HasBeenSet = true; m_p10 = value; } in SetP10()
263 double m_p10; variable
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/tnztools/
H A Dselectiontool.h65 TPointD m_p00, m_p01, m_p10, m_p11; variable
69 : m_p00(p00), m_p01(p01), m_p10(p10), m_p11(p11) {} in FourPoints()
73 , m_p10(TPointD()) in FourPoints()
78 void setP10(TPointD p) { m_p10 = p; } in setP10()
83 TPointD getP10() const { return m_p10; } in getP10()
H A Dselectiontool.cpp91 allPoints.push_back(m_p10); in orderedPoints()
122 return m_p10; in getPoint()
128 return (m_p00 + m_p10) * 0.5; in getPoint()
130 return (m_p10 + m_p11) * 0.5; in getPoint()
144 m_p10 = p; in setPoint()
183 m_p10 = TPointD(); in empty()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/toonz/
H A Dtdistort.h138 TPointD m_p00, m_p10, m_p01, m_p11; member
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Dtdistort.cpp550 m_refToSource.m_p10 = p10s; in BilinearDistorter()
554 m_refToDest.m_p10 = p10d; in BilinearDistorter()
603 return (1 - p.y) * (1 - p.x) * m_p00 + (1 - p.y) * p.x * m_p10 + in map()