Home
last modified time | relevance | path

Searched refs:rotation_ (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/dports/misc/openmvg/openMVG-2.0/src/openMVG/geometry/
H A Dpose3.hpp28 Mat3 rotation_; member in openMVG::geometry::Pose3
46 : rotation_( r ), center_( c ) {} in Pose3()
54 return rotation_; in rotation()
63 return rotation_; in rotation()
91 return -( rotation_ * center_ ); in translation()
103 return rotation_ * ( p.colwise() - center_ ); in operator ()()
108 return rotation_ * ( p - center_ ); in operator ()()
119 return {rotation_ * P.rotation_, in operator *()
120 P.center_ + P.rotation_.transpose() * center_}; in operator *()
130 return {rotation_.transpose(), -( rotation_ * center_ )}; in inverse()
[all …]
H A Dpose3_io.hpp21 { rotation_( 0, 0 ), rotation_( 0, 1 ), rotation_( 0, 2 ) }, in save()
22 { rotation_( 1, 0 ), rotation_( 1, 1 ), rotation_( 1, 2 ) }, in save()
23 { rotation_( 2, 0 ), rotation_( 2, 1 ), rotation_( 2, 2 ) } in save()
38 rotation_.row( 0 ) = Eigen::Map<const Vec3>( &( mat[0][0] ) ); in load()
39 rotation_.row( 1 ) = Eigen::Map<const Vec3>( &( mat[1][0] ) ); in load()
40 rotation_.row( 2 ) = Eigen::Map<const Vec3>( &( mat[2][0] ) ); in load()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/transforms/
H A Drotate_transform_operation.cc46 const auto& other_rotation = To<RotateTransformOperation>(other).rotation_; in operator ==()
47 return rotation_.axis == other_rotation.axis && in operator ==()
48 rotation_.angle == other_rotation.angle; in operator ==()
56 return Rotation::GetCommonAxis(a ? a->rotation_ : Rotation(), in GetCommonAxis()
57 b ? b->rotation_ : Rotation(), result_axis, in GetCommonAxis()
65 Rotation::Add(rotation_, To<RotateTransformOperation>(other).rotation_); in Accumulate()
95 Rotation::Slerp(from_rotate.rotation_, rotation_, progress), type); in Blend()
120 const Rotation& other_rotation = other_rotate.rotation_; in operator ==()
121 return rotation_.axis == other_rotation.axis && in operator ==()
122 rotation_.angle == other_rotation.angle && in operator ==()
H A Drotate_transform_operation.h61 double X() const { return rotation_.axis.X(); } in X()
62 double Y() const { return rotation_.axis.Y(); } in Y()
63 double Z() const { return rotation_.axis.Z(); } in Z()
64 double Angle() const { return rotation_.angle; } in Angle()
65 const FloatPoint3D& Axis() const { return rotation_.axis; } in Axis()
78 transform.Rotate3d(rotation_); in Apply()
104 : rotation_(rotation), type_(type) {} in RotateTransformOperation()
106 const Rotation rotation_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/transforms/
H A Drotate_transform_operation.cc46 const auto& other_rotation = To<RotateTransformOperation>(other).rotation_; in operator ==()
47 return rotation_.axis == other_rotation.axis && in operator ==()
48 rotation_.angle == other_rotation.angle; in operator ==()
56 return Rotation::GetCommonAxis(a ? a->rotation_ : Rotation(), in GetCommonAxis()
57 b ? b->rotation_ : Rotation(), result_axis, in GetCommonAxis()
65 Rotation::Add(rotation_, To<RotateTransformOperation>(other).rotation_); in Accumulate()
96 Rotation::Slerp(from_rotate.rotation_, rotation_, progress), type); in Blend()
126 const Rotation& other_rotation = other_rotate.rotation_; in operator ==()
127 return rotation_.axis == other_rotation.axis && in operator ==()
128 rotation_.angle == other_rotation.angle && in operator ==()
H A Drotate_transform_operation.h61 double X() const { return rotation_.axis.X(); } in X()
62 double Y() const { return rotation_.axis.Y(); } in Y()
63 double Z() const { return rotation_.axis.Z(); } in Z()
64 double Angle() const { return rotation_.angle; } in Angle()
65 const FloatPoint3D& Axis() const { return rotation_.axis; } in Axis()
79 transform.Rotate3d(rotation_); in Apply()
105 : rotation_(rotation), type_(type) {} in RotateTransformOperation()
107 const Rotation rotation_; variable
/dports/graphics/tesseract/tesseract-5.0.0/src/ccstruct/
H A Dnormalis.cpp44 rotation_ = nullptr; in DENORM()
54 if (src.rotation_ == nullptr) { in operator =()
55 rotation_ = nullptr; in operator =()
57 rotation_ = new FCOORD(*src.rotation_); in operator =()
104 rotation_ = nullptr; in SetupNormalization()
385 FCOORD inverse_rotation(rotation_->x(), -rotation_->y()); in LocalDenormTransform()
425 if (rotation_ != nullptr) { in LocalNormBlob()
538 tprintf("Rotation = (%g, %g)\n", rotation_->x(), rotation_->y()); in Print()
556 delete rotation_; in Clear()
557 rotation_ = nullptr; in Clear()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/common_video/
H A Di420_video_frame.cc36 rotation_(rotation) { in I420VideoFrame()
49 rotation_(kVideoRotation_0) { in I420VideoFrame()
68 rotation_ = kVideoRotation_0; in CreateEmptyFrame()
117 rotation_ = rotation; in CreateFrame()
150 rotation_ = videoFrame.rotation_; in CopyFrame()
159 rotation_ = videoFrame.rotation_; in ShallowCopy()
167 rotation_ = kVideoRotation_0; in Reset()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/filters/include/pcl/filters/
H A Dcrop_box.h73 rotation_ (Eigen::Vector3f::Zero ()),
138 rotation_ = rotation; in setRotation()
145 return (rotation_); in getRotation()
185 Eigen::Vector3f rotation_; variable
218 rotation_ (Eigen::Vector3f::Zero ()), in FilterIndices()
282 rotation_ = rotation; in setRotation()
289 return (rotation_); in getRotation()
328 Eigen::Vector3f rotation_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/media/base/
H A Dfake_frame_source.cc39 return rotation_; in GetRotation()
43 rotation_ = rotation; in SetRotation()
47 switch (rotation_) { in GetFrameRotationApplied()
55 RTC_NOTREACHED() << "Invalid rotation value: " << static_cast<int>(rotation_); in GetFrameRotationApplied()
62 return GetFrame(width_, height_, rotation_, interval_us_); in GetFrame()
/dports/net-im/tg_owt/tg_owt-d578c76/src/media/base/
H A Dfake_frame_source.cc39 return rotation_; in GetRotation()
43 rotation_ = rotation; in SetRotation()
47 switch (rotation_) { in GetFrameRotationApplied()
55 RTC_NOTREACHED() << "Invalid rotation value: " << static_cast<int>(rotation_); in GetFrameRotationApplied()
62 return GetFrame(width_, height_, rotation_, interval_us_); in GetFrame()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/media/base/
H A Dfake_frame_source.cc39 return rotation_; in GetRotation()
43 rotation_ = rotation; in SetRotation()
47 switch (rotation_) { in GetFrameRotationApplied()
55 RTC_NOTREACHED() << "Invalid rotation value: " << static_cast<int>(rotation_); in GetFrameRotationApplied()
62 return GetFrame(width_, height_, rotation_, interval_us_); in GetFrame()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/media/base/
H A Dfake_frame_source.cc39 return rotation_; in GetRotation()
43 rotation_ = rotation; in SetRotation()
47 switch (rotation_) { in GetFrameRotationApplied()
55 RTC_NOTREACHED() << "Invalid rotation value: " << static_cast<int>(rotation_); in GetFrameRotationApplied()
62 return GetFrame(width_, height_, rotation_, interval_us_); in GetFrame()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/base/cursor/
H A Dcursor_loader.h21 CursorLoader() : scale_(1.f), rotation_(display::Display::ROTATE_0) {} in CursorLoader()
24 display::Display::Rotation rotation() const { return rotation_; } in rotation()
27 rotation_ = rotation; in set_rotation()
69 display::Display::Rotation rotation_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/base/cursor/
H A Dcursor_loader.h26 display::Display::Rotation rotation() const { return rotation_; } in COMPONENT_EXPORT()
32 if (rotation_ == rotation && scale_ == scale) in COMPONENT_EXPORT()
35 rotation_ = rotation; in COMPONENT_EXPORT()
68 display::Display::Rotation rotation_ = display::Display::ROTATE_0; in COMPONENT_EXPORT() local
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Physics/
H A DConstraint.cpp59 rotation_(Quaternion::IDENTITY), in Constraint()
89 URHO3D_ATTRIBUTE("Rotation", Quaternion, rotation_, Quaternion::IDENTITY, AM_DEFAULT); in RegisterObject()
214 if (rotation != rotation_) in SetRotation()
216 rotation_ = rotation; in SetRotation()
228 rotation_ = Quaternion(Vector3::FORWARD, axis); in SetAxis()
233 rotation_ = Quaternion(Vector3::RIGHT, axis); in SetAxis()
412 btTransform ownFrame(ToBtQuaternion(rotation_), ToBtVector3(ownBodyScaledPosition)); in ApplyFrames()
421 btTransform ownFrame(ToBtQuaternion(rotation_), ToBtVector3(ownBodyScaledPosition)); in ApplyFrames()
430 btTransform ownFrame(ToBtQuaternion(rotation_), ToBtVector3(ownBodyScaledPosition)); in ApplyFrames()
520 btTransform ownFrame(ToBtQuaternion(rotation_), ToBtVector3(ownBodyScaledPosition)); in CreateConstraint()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/api/video/
H A Dvideo_frame.h33 rotation_ = kVideoRotation_0; in VideoFrame()
97 VideoRotation rotation() const { return rotation_; } in rotation()
98 void set_rotation(VideoRotation rotation) { rotation_ = rotation; } in set_rotation()
122 VideoRotation rotation_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/glmark2/src/src/
H A Dscene-texture.cpp254 rotation_ = LibMatrix::vec3(); in setup()
280 rotation_ = rotationSpeed_ * elapsed_time; in update()
289 model_view.rotate(rotation_.x(), 1.0f, 0.0f, 0.0f); in draw()
290 model_view.rotate(rotation_.y(), 0.0f, 1.0f, 0.0f); in draw()
291 model_view.rotate(rotation_.z(), 0.0f, 0.0f, 1.0f); in draw()
318 if (rotation_.x() != 0 || rotation_.y() != 0 || rotation_.z() != 0) in validate()
/dports/benchmarks/glmark2/glmark2-2021.12/src/
H A Dscene-texture.cpp254 rotation_ = LibMatrix::vec3(); in setup()
280 rotation_ = rotationSpeed_ * elapsed_time; in update()
289 model_view.rotate(rotation_.x(), 1.0f, 0.0f, 0.0f); in draw()
290 model_view.rotate(rotation_.y(), 0.0f, 1.0f, 0.0f); in draw()
291 model_view.rotate(rotation_.z(), 0.0f, 0.0f, 1.0f); in draw()
318 if (rotation_.x() != 0 || rotation_.y() != 0 || rotation_.z() != 0) in validate()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/desktop_capture/win/
H A Ddxgi_output_duplicator.cc89 RotateSize(desktop_rect().size(), ReverseRotation(rotation_)); in Initialize()
134 rotation_ = DxgiRotationToRotation(desc_.Rotation); in DuplicateOutput()
136 RotateSize(desktop_rect_.size(), ReverseRotation(rotation_)); in DuplicateOutput()
192 if (rotation_ != Rotation::CLOCK_WISE_0) { in Duplicate()
197 desktop_rect().size(), ReverseRotation(rotation_)); in Duplicate()
198 RotateDesktopFrame(source, source_rect, rotation_, offset, target); in Duplicate()
297 unrotated_size_, rotation_)); in DoDetectUpdatedRegion()
303 unrotated_size_, rotation_)); in DoDetectUpdatedRegion()
312 unrotated_size_, rotation_)); in DoDetectUpdatedRegion()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/filters/include/pcl/filters/impl/
H A Dcrop_box.hpp61 if (rotation_ != Eigen::Vector3f::Zero ()) in applyFilter()
64 rotation_ (0), rotation_ (1), rotation_ (2), in applyFilter()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/media/base/
H A Dfakevideocapturer.h35 rotation_(webrtc::kVideoRotation_0) { in FakeVideoCapturer()
102 buffer, rotation_, in CaptureCustomFrame()
133 rotation_ = rotation; in SetRotation()
136 webrtc::VideoRotation GetRotation() { return rotation_; } in GetRotation()
143 webrtc::VideoRotation rotation_; variable
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/media/base/
H A Dfakevideocapturer.h35 rotation_(webrtc::kVideoRotation_0) { in FakeVideoCapturer()
106 buffer, rotation_, in CaptureCustomFrame()
137 rotation_ = rotation; in SetRotation()
140 webrtc::VideoRotation GetRotation() { return rotation_; } in GetRotation()
147 webrtc::VideoRotation rotation_; variable
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/media/base/
H A Dfakevideocapturer.h35 rotation_(webrtc::kVideoRotation_0) { in FakeVideoCapturer()
106 buffer, rotation_, in CaptureCustomFrame()
137 rotation_ = rotation; in SetRotation()
140 webrtc::VideoRotation GetRotation() { return rotation_; } in GetRotation()
147 webrtc::VideoRotation rotation_; variable
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/media/base/
H A Dfakevideocapturer.h35 rotation_(webrtc::kVideoRotation_0) { in FakeVideoCapturer()
106 buffer, rotation_, in CaptureCustomFrame()
137 rotation_ = rotation; in SetRotation()
140 webrtc::VideoRotation GetRotation() { return rotation_; } in GetRotation()
147 webrtc::VideoRotation rotation_; variable

12345678910>>...15