亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qline.h

?? QT 開發環境里面一個很重要的文件
?? H
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QLINE_H#define QLINE_H#include <QtCore/qpoint.h>QT_BEGIN_HEADERQT_MODULE(Core)/******************************************************************************* * class QLine *******************************************************************************/class Q_CORE_EXPORT QLine{public:    inline QLine();    inline QLine(const QPoint &pt1, const QPoint &pt2);    inline QLine(int x1, int y1, int x2, int y2);    inline bool isNull() const;    inline QPoint p1() const;    inline QPoint p2() const;    inline int x1() const;    inline int y1() const;    inline int x2() const;    inline int y2() const;    inline int dx() const;    inline int dy() const;    inline void translate(const QPoint &p);    inline void translate(int dx, int dy);    inline bool operator==(const QLine &d) const;    inline bool operator!=(const QLine &d) const { return !(*this == d); }private:    QPoint pt1, pt2;};Q_DECLARE_TYPEINFO(QLine, Q_MOVABLE_TYPE);/******************************************************************************* * class QLine inline members *******************************************************************************/inline QLine::QLine() { }inline QLine::QLine(const QPoint &pt1_, const QPoint &pt2_) : pt1(pt1_), pt2(pt2_) { }inline QLine::QLine(int x1pos, int y1pos, int x2pos, int y2pos) : pt1(QPoint(x1pos, y1pos)), pt2(QPoint(x2pos, y2pos)) { }inline bool QLine::isNull() const{    return pt1 == pt2;}inline int QLine::x1() const{    return pt1.x();}inline int QLine::y1() const{    return pt1.y();}inline int QLine::x2() const{    return pt2.x();}inline int QLine::y2() const{    return pt2.y();}inline QPoint QLine::p1() const{    return pt1;}inline QPoint QLine::p2() const{    return pt2;}inline int QLine::dx() const{    return pt2.x() - pt1.x();}inline int QLine::dy() const{    return pt2.y() - pt1.y();}inline void QLine::translate(const QPoint &point){    pt1 += point;    pt2 += point;}inline void QLine::translate(int adx, int ady){    this->translate(QPoint(adx, ady));}inline bool QLine::operator==(const QLine &d) const{    return pt1 == d.pt1 && pt2 == d.pt2;}#ifndef QT_NO_DEBUG_STREAMQ_CORE_EXPORT QDebug operator<<(QDebug d, const QLine &p);#endif#ifndef QT_NO_DATASTREAMQ_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QLine &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QLine &);#endif/******************************************************************************* * class QLineF *******************************************************************************/class Q_CORE_EXPORT QLineF {public:    enum IntersectType { NoIntersection, BoundedIntersection, UnboundedIntersection };    inline QLineF();    inline QLineF(const QPointF &pt1, const QPointF &pt2);    inline QLineF(qreal x1, qreal y1, qreal x2, qreal y2);    inline QLineF(const QLine &line) : pt1(line.p1()), pt2(line.p2()) { }    bool isNull() const;    inline QPointF p1() const;    inline QPointF p2() const;    inline qreal x1() const;    inline qreal y1() const;    inline qreal x2() const;    inline qreal y2() const;    inline qreal dx() const;    inline qreal dy() const;    qreal length() const;    void setLength(qreal len);    QLineF unitVector() const;    QLineF normalVector() const;    // ### Qt 5: rename intersects() or intersection() and rename IntersectType IntersectionType    IntersectType intersect(const QLineF &l, QPointF *intersectionPoint) const;    qreal angle(const QLineF &l) const;    QPointF pointAt(qreal t) const;    inline void translate(const QPointF &p);    inline void translate(qreal dx, qreal dy);    inline bool operator==(const QLineF &d) const;    inline bool operator!=(const QLineF &d) const { return !(*this == d); }    QLine toLine() const;private:    QPointF pt1, pt2;};Q_DECLARE_TYPEINFO(QLineF, Q_MOVABLE_TYPE);/******************************************************************************* * class QLineF inline members *******************************************************************************/inline QLineF::QLineF(){}inline QLineF::QLineF(const QPointF &apt1, const QPointF &apt2)    : pt1(apt1), pt2(apt2){}inline QLineF::QLineF(qreal x1pos, qreal y1pos, qreal x2pos, qreal y2pos)    : pt1(x1pos, y1pos), pt2(x2pos, y2pos){}inline qreal QLineF::x1() const{    return pt1.x();}inline qreal QLineF::y1() const{    return pt1.y();}inline qreal QLineF::x2() const{    return pt2.x();}inline qreal QLineF::y2() const{    return pt2.y();}inline QPointF QLineF::p1() const{    return pt1;}inline QPointF QLineF::p2() const{    return pt2;}inline qreal QLineF::dx() const{    return pt2.x() - pt1.x();}inline qreal QLineF::dy() const{    return pt2.y() - pt1.y();}inline QLineF QLineF::normalVector() const{    return QLineF(p1(), p1() + QPointF(dy(), -dx()));}inline void QLineF::translate(const QPointF &point){    pt1 += point;    pt2 += point;}inline void QLineF::translate(qreal adx, qreal ady){    this->translate(QPointF(adx, ady));}inline void QLineF::setLength(qreal len){    if (isNull())        return;    QLineF v = unitVector();    pt2 = QPointF(pt1.x() + v.dx() * len, pt1.y() + v.dy() * len);}inline QPointF QLineF::pointAt(qreal t) const{    qreal vx = pt2.x() - pt1.x();    qreal vy = pt2.y() - pt1.y();    return QPointF(pt1.x() + vx * t, pt1.y() + vy * t);}inline QLine QLineF::toLine() const{    return QLine(pt1.toPoint(), pt2.toPoint());}inline bool QLineF::operator==(const QLineF &d) const{    return pt1 == d.pt1 && pt2 == d.pt2;}#ifndef QT_NO_DEBUG_STREAMQ_CORE_EXPORT QDebug operator<<(QDebug d, const QLineF &p);#endif#ifndef QT_NO_DATASTREAMQ_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QLineF &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QLineF &);#endifQT_END_HEADER#endif // QLINE_H

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩中文字幕不卡| 91看片淫黄大片一级在线观看| 成人性视频免费网站| 欧美日韩国产一级| 国产精品情趣视频| 免费成人在线观看视频| 色老汉一区二区三区| 亚洲色图制服诱惑 | 亚洲午夜免费视频| 福利一区在线观看| 欧美成人在线直播| 日韩精品一二三四| 欧美怡红院视频| 综合色天天鬼久久鬼色| 国产在线观看一区二区| 337p亚洲精品色噜噜噜| 亚洲国产视频一区二区| 91丨九色丨尤物| 国产精品五月天| 国产精品自拍在线| 日韩精品一区二区三区在线观看| 亚洲成人你懂的| 欧美在线免费视屏| 亚洲精品少妇30p| 99精品1区2区| 国产精品国产馆在线真实露脸| 国产一区在线精品| 久久午夜电影网| 国产v综合v亚洲欧| 国产片一区二区| 国产成人在线电影| 国产婷婷一区二区| 暴力调教一区二区三区| 国产精品成人午夜| 91丝袜呻吟高潮美腿白嫩在线观看| 国产欧美一区二区三区沐欲| 国产精品影视网| 国产欧美综合在线观看第十页| 国产精品羞羞答答xxdd| 国产亚洲精品aa| 丰满放荡岳乱妇91ww| 国产精品狼人久久影院观看方式| 东方欧美亚洲色图在线| 中文字幕日韩一区| 欧美日韩精品一区二区在线播放| 亚洲成va人在线观看| 日韩限制级电影在线观看| 精品亚洲免费视频| 中文字幕一区二区三区不卡在线 | 亚洲人成影院在线观看| 日韩欧美一区中文| 国内精品伊人久久久久av影院| 久久久久久久久97黄色工厂| 国产成人无遮挡在线视频| 国产精品久久免费看| 日本韩国精品在线| 日韩国产高清影视| 久久九九全国免费| 91免费视频网址| 日本不卡一区二区三区| 久久久另类综合| 91精品福利在线| 久久国产精品一区二区| 国产精品污www在线观看| 在线一区二区三区四区五区| 日本最新不卡在线| 国产精品国产三级国产普通话99| 欧美在线免费观看亚洲| 国产在线视频一区二区| 亚洲视频综合在线| 日韩欧美国产午夜精品| www.av亚洲| 免费高清成人在线| 亚洲精品国产无套在线观| 91精品国产全国免费观看| 成人高清视频在线观看| 亚洲国产欧美在线人成| 久久婷婷色综合| 欧美在线一二三四区| 国产夫妻精品视频| 三级不卡在线观看| 最近中文字幕一区二区三区| 综合网在线视频| 欧美成人一区二区| 欧美群妇大交群的观看方式| 成人av电影在线网| 极品少妇一区二区| 亚洲国产精品欧美一二99| 国产精品高潮呻吟| 欧美成人午夜电影| 欧美久久久久久久久久| 91视频在线观看免费| 国产原创一区二区三区| 日韩电影在线观看电影| 亚洲一区二区三区免费视频| 国产亚洲精品精华液| 精品久久久影院| 日韩欧美在线综合网| 这里只有精品99re| 欧美性大战久久久久久久蜜臀| 丁香天五香天堂综合| 黄色资源网久久资源365| 日韩电影在线观看电影| 亚洲www啪成人一区二区麻豆| 亚洲图片你懂的| 国产精品久久久爽爽爽麻豆色哟哟 | 在线观看91av| 欧美中文字幕久久| 欧洲一区二区三区在线| 91免费在线播放| 一道本成人在线| 91最新地址在线播放| 91色porny蝌蚪| av一二三不卡影片| av网站免费线看精品| 成人av在线播放网址| www.久久久久久久久| 99久久婷婷国产综合精品电影| av电影天堂一区二区在线观看| av成人免费在线| 色94色欧美sute亚洲线路二| 色呦呦国产精品| 欧美日韩不卡一区二区| 欧美高清精品3d| 91精品国产91久久久久久一区二区 | 日韩精品乱码av一区二区| 天堂va蜜桃一区二区三区| 午夜欧美在线一二页| 男女性色大片免费观看一区二区| 日本在线不卡视频| 九色|91porny| 成人网页在线观看| 一道本成人在线| 欧美日韩一级视频| 日韩一区二区不卡| 亚洲高清视频中文字幕| 免费在线成人网| 国产精品69久久久久水密桃| 成人av电影在线观看| 欧美无人高清视频在线观看| 欧美一区二区在线观看| 国产亚洲欧美日韩在线一区| 亚洲激情图片小说视频| 蜜桃视频免费观看一区| 国产a级毛片一区| 欧美日韩三级视频| 精品sm在线观看| 亚洲人成人一区二区在线观看| 五月婷婷激情综合| 高清在线不卡av| 欧美亚洲国产一卡| ww亚洲ww在线观看国产| 亚洲女同女同女同女同女同69| 玉米视频成人免费看| 久久国产欧美日韩精品| 91行情网站电视在线观看高清版| 制服丝袜国产精品| 亚洲欧美乱综合| 精品午夜久久福利影院| 91福利社在线观看| 久久久久99精品一区| 亚洲6080在线| 99riav久久精品riav| 欧美videos大乳护士334| 一区二区三区不卡视频| 国产99久久久国产精品免费看| 欧美男男青年gay1069videost | 成人小视频在线| 3atv在线一区二区三区| 亚洲视频一区二区在线| 激情av综合网| 在线综合视频播放| 亚洲免费三区一区二区| 福利一区二区在线观看| 欧美本精品男人aⅴ天堂| 亚洲国产精品久久不卡毛片 | 国产精品理论片| 国模套图日韩精品一区二区| 欧美三级日韩在线| 亚洲图片激情小说| 成人激情小说网站| 久久麻豆一区二区| 奇米四色…亚洲| 欧美精品三级在线观看| 亚洲国产日韩av| 欧美主播一区二区三区| 1000部国产精品成人观看| 成人免费三级在线| 久久亚洲精精品中文字幕早川悠里 | eeuss鲁片一区二区三区在线观看| 91麻豆精品国产| 日韩精品久久理论片| 欧美日韩国产影片| 亚洲在线视频免费观看| 91香蕉视频在线| 国产精品久久久久久久久久免费看| 激情综合网av| 精品国产百合女同互慰| 久久国产精品色婷婷| 精品国产乱码久久久久久久久|