@threedddplus/logoeditor 0.0.80 → 0.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/logoeditor.cjs.development.js +22 -23
- package/dist/logoeditor.cjs.development.js.map +1 -1
- package/dist/logoeditor.cjs.production.min.js +1 -1
- package/dist/logoeditor.cjs.production.min.js.map +1 -1
- package/dist/logoeditor.esm.js +22 -23
- package/dist/logoeditor.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/logoeditor.esm.js
CHANGED
@@ -4689,33 +4689,32 @@ var initCanvas = function initCanvas() {
|
|
4689
4689
|
var onObjectMoving = function onObjectMoving(e) {
|
4690
4690
|
use3dddPlus.getState().updateModifaction(false);
|
4691
4691
|
var obj = e.target;
|
4692
|
-
|
4693
|
-
|
4692
|
+
// if (
|
4693
|
+
// obj.getBoundingRect().width > obj.canvas.height ||
|
4694
|
+
// obj.getBoundingRect().height > obj.canvas.width
|
4695
|
+
// ) {
|
4696
|
+
// return;
|
4697
|
+
// }
|
4694
4698
|
obj.setCoords();
|
4695
|
-
|
4696
|
-
|
4697
|
-
|
4698
|
-
|
4699
|
-
return;
|
4700
|
-
}
|
4701
|
-
if (obj.getScaledHeight() > obj.canvas.height) {
|
4702
|
-
//Objct height is too big
|
4703
|
-
// obj.scaleToHeight(obj.canvas.height - 100);
|
4704
|
-
return;
|
4705
|
-
}
|
4706
|
-
if (obj.oCoords.br.x >= obj.canvas.width) {
|
4707
|
-
obj.left = obj.left - (obj.oCoords.br.x - obj.canvas.width) - offsetLeft;
|
4708
|
-
}
|
4709
|
-
if (obj.oCoords.br.y >= obj.canvas.height) {
|
4710
|
-
obj.top = obj.top - (obj.oCoords.br.y - obj.canvas.height) - offsetTop;
|
4699
|
+
if (obj.getBoundingRect().top < 0 || obj.getBoundingRect().left < 0) {
|
4700
|
+
obj.top = Math.max(obj.top, obj.top - obj.getBoundingRect().top);
|
4701
|
+
obj.left = Math.max(obj.left, obj.left - obj.getBoundingRect().left);
|
4702
|
+
obj.setCoords();
|
4711
4703
|
}
|
4712
|
-
if (obj.
|
4713
|
-
obj.
|
4704
|
+
if (obj.getBoundingRect().top + obj.getBoundingRect().height > obj.canvas.height || obj.getBoundingRect().left + obj.getBoundingRect().width > obj.canvas.width) {
|
4705
|
+
obj.top = Math.min(obj.top, obj.canvas.height - obj.getBoundingRect().height + obj.top - obj.getBoundingRect().top);
|
4706
|
+
obj.left = Math.min(obj.left, obj.canvas.width - obj.getBoundingRect().width + obj.left - obj.getBoundingRect().left);
|
4707
|
+
obj.setCoords();
|
4714
4708
|
}
|
4715
|
-
|
4716
|
-
|
4709
|
+
var brNew = obj.getBoundingRect();
|
4710
|
+
if (brNew.width + brNew.left >= obj.canvas.width || brNew.height + brNew.top >= obj.canvas.height || brNew.left < 0 || brNew.top < 0) ; else {
|
4711
|
+
left1 = obj.left;
|
4712
|
+
top1 = obj.top;
|
4713
|
+
scale1x = obj.scaleX;
|
4714
|
+
scale1y = obj.scaleY;
|
4715
|
+
width1 = obj.width;
|
4716
|
+
height1 = obj.height;
|
4717
4717
|
}
|
4718
|
-
obj.setCoords();
|
4719
4718
|
if (isObjectInCenter(e.target)) {
|
4720
4719
|
use3dddPlus.getState().verticalLine.set({
|
4721
4720
|
visible: true
|