This commit is contained in:
parent
5cc1e2d71c
commit
ea9b996aae
@ -1034,7 +1034,8 @@ class EBookReader {
|
|||||||
// XPath to CSS Selector
|
// XPath to CSS Selector
|
||||||
let derivedSelector = remainingXPath
|
let derivedSelector = remainingXPath
|
||||||
.replace(/^\/html\/body/, "body")
|
.replace(/^\/html\/body/, "body")
|
||||||
.replace(/\/(\w+)\[(\d+)\]/g, " $1:nth-of-type($2)");
|
.replace(/\/(\w+)\[(\d+)\]/g, " $1:nth-of-type($2)")
|
||||||
|
.replace(/\//g, " ");
|
||||||
|
|
||||||
// Validate Namespace
|
// Validate Namespace
|
||||||
if (namespaceURI) remainingXPath = remainingXPath.replaceAll("/", "/ns:");
|
if (namespaceURI) remainingXPath = remainingXPath.replaceAll("/", "/ns:");
|
||||||
|
@ -101,9 +101,6 @@ func getSVGBezierOpposedLine(pointA SVGGraphPoint, pointB SVGGraphPoint) SVGBezi
|
|||||||
Length: int(math.Sqrt(math.Pow(lengthX, 2) + math.Pow(lengthY, 2))),
|
Length: int(math.Sqrt(math.Pow(lengthX, 2) + math.Pow(lengthY, 2))),
|
||||||
Angle: int(math.Atan2(lengthY, lengthX)),
|
Angle: int(math.Atan2(lengthY, lengthX)),
|
||||||
}
|
}
|
||||||
|
|
||||||
// length = Math.sqrt(Math.pow(lengthX, 2) + Math.pow(lengthY, 2)),
|
|
||||||
// angle = Math.atan2(lengthY, lengthX)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getSVGBezierControlPoint(currentPoint *SVGGraphPoint, prevPoint *SVGGraphPoint, nextPoint *SVGGraphPoint, isReverse bool) SVGGraphPoint {
|
func getSVGBezierControlPoint(currentPoint *SVGGraphPoint, prevPoint *SVGGraphPoint, nextPoint *SVGGraphPoint, isReverse bool) SVGGraphPoint {
|
||||||
|
Loading…
Reference in New Issue
Block a user