File size: 13,140 Bytes
a5ffdcd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#include <iostream>
#include "rs_dimaligned.h"
#include "rs_constructionline.h"
#include "rs_debug.h"
#include "rs_graphic.h"
#include "rs_line.h"
#include "rs_math.h"
#include "rs_settings.h"
#include "rs_units.h"
/**
* Constructor with initialisation.
*
* @para extensionPoint1 Definition point. Startpoint of the
* first extension line.
* @para extensionPoint2 Definition point. Startpoint of the
* second extension line.
*/
RS_DimAlignedData::RS_DimAlignedData(const RS_Vector& _extensionPoint1,
const RS_Vector& _extensionPoint2):
extensionPoint1(_extensionPoint1)
,extensionPoint2(_extensionPoint2){
}
RS_DimAlignedData::RS_DimAlignedData(const RS_DimAlignedData& other) :
extensionPoint1{other.extensionPoint1},
extensionPoint2{other.extensionPoint2} {
}
std::ostream& operator << (std::ostream& os,const RS_DimAlignedData& dd) {
os << "(" << dd.extensionPoint1 << "/" << dd.extensionPoint1 << ")";
return os;
}
/**
* Constructor.
*
* @para parent Parent Entity Container.
* @para d Common dimension geometrical data.
* @para ed Extended geometrical data for aligned dimension.
*/
RS_DimAligned::RS_DimAligned(RS_EntityContainer* parent,
const RS_DimensionData& d,
const RS_DimAlignedData& ed)
: RS_Dimension(parent, d), m_dimAlignedData(ed) {
}
RS_DimAligned::RS_DimAligned(const RS_DimAligned& other)
:RS_Dimension(other), m_dimAlignedData(other.m_dimAlignedData){
}
RS_Entity* RS_DimAligned::clone() const{
auto d = new RS_DimAligned(*this);
return d;
}
RS_VectorSolutions RS_DimAligned::getRefPoints() const {
return RS_VectorSolutions({
m_dimAlignedData.extensionPoint1, m_dimAlignedData.extensionPoint2,
m_dimGenericData.definitionPoint, m_dimGenericData.middleOfText
});
}
/**
* @return Automatically created label for the default
* measurement of this dimension.
*/
QString RS_DimAligned::getMeasuredLabel() {
double distance = m_dimAlignedData.extensionPoint1.distanceTo(m_dimAlignedData.extensionPoint2);
double dist = prepareLabelLinearDistance(distance);
QString distanceLabel = createLinearMeasuredLabel(dist);
return distanceLabel;
}
RS_DimAlignedData const& RS_DimAligned::getEData() const {
return m_dimAlignedData;
}
RS_Vector const& RS_DimAligned::getExtensionPoint1() const {
return m_dimAlignedData.extensionPoint1;
}
RS_Vector const& RS_DimAligned::getExtensionPoint2() const {
return m_dimAlignedData.extensionPoint2;
}
/**
* Updates the sub entities of this dimension. Called when the
* text or the position, alignment, .. changes.
*
* @param autoText Automatically reposition the text label
*/
void RS_DimAligned::doUpdateDim() {
RS_DEBUG->print("RS_DimAligned::update");
double dimscale = getGeneralScale();
double dimexo = getExtensionLineOffset()*dimscale;
double dimexe = getExtensionLineExtension()*dimscale;
// text height (DIMTXT)
//double dimtxt = getTextHeight();
// text distance to line (DIMGAP)
//double dimgap = getDimensionLineGap();
// Angle from extension endpoints towards dimension line
double extAngle = m_dimAlignedData.extensionPoint2.angleTo(m_dimGenericData.definitionPoint);
// extension lines length
double extLength = m_dimAlignedData.extensionPoint2.distanceTo(m_dimGenericData.definitionPoint);
if (getFixedLengthOn()){
double dimfxl = getFixedLength()*dimscale;
if (extLength-dimexo > dimfxl) {
dimexo = extLength - dimfxl;
}
}
RS_Vector extLineOffsetVector = RS_Vector::polar(dimexo, extAngle);
RS_Vector extLineExtensionVector = RS_Vector::polar(dimexe, extAngle);
RS_Vector extLineDirectionVector = RS_Vector::polar(1.0, extAngle);
auto extensionLineLengthVector = extLineDirectionVector*extLength;
auto dimLineStart = m_dimAlignedData.extensionPoint1 + extensionLineLengthVector;
auto dimLineEnd = m_dimAlignedData.extensionPoint2 + extensionLineLengthVector;
// Extension lines
auto extensionLineStyle = m_dimStyleTransient->extensionLine();
bool showExtLine1 = extensionLineStyle->suppressFirstLine() == LC_DimStyle::ExtensionLine::DONT_SUPPRESS;
if (showExtLine1) {
addDimExtensionLine(m_dimAlignedData.extensionPoint1 + extLineOffsetVector, dimLineStart + extLineExtensionVector, true);
}
bool showExtLine2 = extensionLineStyle->suppressSecondLine() == LC_DimStyle::ExtensionLine::DONT_SUPPRESS;
if (showExtLine2) {
addDimExtensionLine(m_dimAlignedData.extensionPoint2 + extLineOffsetVector, dimLineEnd + extLineExtensionVector, false);
}
// Dimension line:
auto dimLineStyle = m_dimStyleTransient->dimensionLine();
bool showDimLine1 = dimLineStyle->suppressFirstLine() == LC_DimStyle::DimensionLine::DONT_SUPPRESS;
bool showArrow1 = showExtLine1 && showDimLine1;
bool showDimLine2 = dimLineStyle->suppressSecondLine() == LC_DimStyle::DimensionLine::DONT_SUPPRESS;
bool showArrow2 = showExtLine2 && showDimLine2;
createDimensionLine(dimLineStart,dimLineEnd,showArrow1, showArrow2, showDimLine1, showDimLine2, m_dimGenericData.autoText);
}
void RS_DimAligned::getDimPoints(RS_Vector& dimP1, RS_Vector& dimP2){
double extAngle = m_dimAlignedData.extensionPoint2.angleTo(m_dimGenericData.definitionPoint);
RS_Vector e1 = RS_Vector::polar(1.0, extAngle);
double extLength = m_dimAlignedData.extensionPoint2.distanceTo(m_dimGenericData.definitionPoint);
dimP1 = m_dimAlignedData.extensionPoint1 + e1*extLength;
dimP2 = m_dimAlignedData.extensionPoint2 + e1*extLength;
}
double RS_DimAligned::getDistanceToPoint(const RS_Vector& coord,
RS_Entity** entity,
RS2::ResolveLevel level,
double solidDist) const
{
return RS_EntityContainer::getDistanceToPoint(
coord,
entity,
level,
solidDist);
}
void RS_DimAligned::updateDimPoint(){
// temporary construction line
RS_ConstructionLine tmpLine( nullptr,
RS_ConstructionLineData(m_dimAlignedData.extensionPoint1, m_dimAlignedData.extensionPoint2));
RS_Vector tmpP1 = tmpLine.getNearestPointOnEntity(m_dimGenericData.definitionPoint);
m_dimGenericData.definitionPoint += m_dimAlignedData.extensionPoint2 - tmpP1;
}
bool RS_DimAligned::hasEndpointsWithinWindow(const RS_Vector& v1, const RS_Vector& v2) const{
return (m_dimAlignedData.extensionPoint1.isInWindow(v1, v2) ||
m_dimAlignedData.extensionPoint2.isInWindow(v1, v2));
}
void RS_DimAligned::move(const RS_Vector& offset) {
RS_Dimension::move(offset);
m_dimAlignedData.extensionPoint1.move(offset);
m_dimAlignedData.extensionPoint2.move(offset);
update();
}
void RS_DimAligned::rotate(const RS_Vector& center, double angle) {
rotate(center,RS_Vector(angle));
}
void RS_DimAligned::rotate(const RS_Vector& center, const RS_Vector& angleVector) {
RS_Dimension::rotate(center, angleVector);
m_dimAlignedData.extensionPoint1.rotate(center, angleVector);
m_dimAlignedData.extensionPoint2.rotate(center, angleVector);
update();
}
void RS_DimAligned::scale(const RS_Vector& center, const RS_Vector& factor) {
RS_Dimension::scale(center, factor);
m_dimAlignedData.extensionPoint1.scale(center, factor);
m_dimAlignedData.extensionPoint2.scale(center, factor);
update();
}
void RS_DimAligned::mirror(const RS_Vector& axisPoint1, const RS_Vector& axisPoint2) {
RS_Dimension::mirror(axisPoint1, axisPoint2);
m_dimAlignedData.extensionPoint1.mirror(axisPoint1, axisPoint2);
m_dimAlignedData.extensionPoint2.mirror(axisPoint1, axisPoint2);
update();
}
void RS_DimAligned::stretch(const RS_Vector& firstCorner,
const RS_Vector& secondCorner,
const RS_Vector& offset) {
//e->calculateBorders();
if (getMin().isInWindow(firstCorner, secondCorner) &&
getMax().isInWindow(firstCorner, secondCorner)) {
move(offset);
}
else {
//RS_Vector v = data.definitionPoint - edata.extensionPoint2;
double len = m_dimAlignedData.extensionPoint2.distanceTo(m_dimGenericData.definitionPoint);
double ang1 = m_dimAlignedData.extensionPoint1.angleTo(m_dimAlignedData.extensionPoint2)
+ M_PI_2;
if (m_dimAlignedData.extensionPoint1.isInWindow(firstCorner,secondCorner)) {
m_dimAlignedData.extensionPoint1.move(offset);
}
if (m_dimAlignedData.extensionPoint2.isInWindow(firstCorner,secondCorner)) {
m_dimAlignedData.extensionPoint2.move(offset);
}
double ang2 = m_dimAlignedData.extensionPoint1.angleTo(m_dimAlignedData.extensionPoint2)
+ M_PI_2;
double diff = RS_Math::getAngleDifference(ang1, ang2);
if (diff>M_PI) {
diff-=2*M_PI;
}
if (fabs(diff)>M_PI_2) {
ang2 = RS_Math::correctAngle(ang2+M_PI);
}
RS_Vector v = RS_Vector::polar(len, ang2);
m_dimGenericData.definitionPoint = m_dimAlignedData.extensionPoint2 + v;
}
updateDim(true);
}
void RS_DimAligned::moveRef(const RS_Vector& ref, const RS_Vector& offset) {
if (ref.distanceTo(m_dimGenericData.definitionPoint)<1.0e-4) {
RS_ConstructionLine l(nullptr,
RS_ConstructionLineData(m_dimAlignedData.extensionPoint1,
m_dimAlignedData.extensionPoint2));
double d = l.getDistanceToPoint(m_dimGenericData.definitionPoint+offset);
double a = m_dimAlignedData.extensionPoint2.angleTo(m_dimGenericData.definitionPoint);
double ad = RS_Math::getAngleDifference(a,
m_dimAlignedData.extensionPoint2.angleTo(m_dimGenericData.definitionPoint+offset));
if (fabs(ad)>M_PI_2 && fabs(ad)<3.0/2.0*M_PI) {
a = RS_Math::correctAngle(a+M_PI);
}
RS_Vector v = RS_Vector::polar(d, a);
m_dimGenericData.definitionPoint = m_dimAlignedData.extensionPoint2 + v;
updateDim(true);
}
else if (ref.distanceTo(m_dimGenericData.middleOfText)<1.0e-4) {
m_dimGenericData.middleOfText.move(offset);
updateDim(false);
}
else if (ref.distanceTo(m_dimAlignedData.extensionPoint1)<1.0e-4) {
double a1 = m_dimAlignedData.extensionPoint2.angleTo(m_dimAlignedData.extensionPoint1);
double a2 = m_dimAlignedData.extensionPoint2.angleTo(m_dimAlignedData.extensionPoint1+offset);
double d1 = m_dimAlignedData.extensionPoint2.distanceTo(m_dimAlignedData.extensionPoint1);
double d2 = m_dimAlignedData.extensionPoint2.distanceTo(m_dimAlignedData.extensionPoint1+offset);
rotate(m_dimAlignedData.extensionPoint2, a2-a1);
if (fabs(d1)>1.0e-4) {
scale(m_dimAlignedData.extensionPoint2, RS_Vector(d2/d1, d2/d1));
}
updateDim(true);
}
else if (ref.distanceTo(m_dimAlignedData.extensionPoint2)<1.0e-4) {
double a1 = m_dimAlignedData.extensionPoint1.angleTo(m_dimAlignedData.extensionPoint2);
double a2 = m_dimAlignedData.extensionPoint1.angleTo(m_dimAlignedData.extensionPoint2+offset);
double d1 = m_dimAlignedData.extensionPoint1.distanceTo(m_dimAlignedData.extensionPoint2);
double d2 = m_dimAlignedData.extensionPoint1.distanceTo(m_dimAlignedData.extensionPoint2+offset);
rotate(m_dimAlignedData.extensionPoint1, a2-a1);
if (fabs(d1)>1.0e-4) {
scale(m_dimAlignedData.extensionPoint1, RS_Vector(d2/d1, d2/d1));
}
updateDim(true);
}
}
/**
* Dumps the point's data to stdout.
*/
std::ostream& operator << (std::ostream& os, const RS_DimAligned& d) {
os << " DimAligned: " << d.getData() << "\n" << d.getEData() << "\n";
return os;
}
|