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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* Test for https://gitlab.com/inkscape/inkscape/-/issues/3393
*//*
*
* Authors:
* Thomas Holder
*
* Copyright (C) 2022 Authors
*
* Released under GNU GPL version 2 or later, read the file 'COPYING' for more information
*/
#include <doc-per-case-test.h>
#include <gtest/gtest.h>
#include <src/object/object-set.h>
#include <src/object/sp-shape.h>
using namespace Inkscape;
static char const *const docString = R"""(<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
<defs>
<inkscape:path-effect effect="skeletal" copytype="repeated"
id="lpe1" pattern="M 0,0 5,5 0,10" />
</defs>
<path id="path1"
inkscape:path-effect="#lpe1"
inkscape:original-d="M 5,10 H 15"
d="M 5,5 10,10 5,15 M 10,5 15,10 10,15" />
</svg>
)""";
TEST_F(DocPerCaseTest, PathReverse)
{
auto doc = std::unique_ptr<SPDocument>(SPDocument::createNewDocFromMem(docString, strlen(docString), false));
doc->ensureUpToDate();
auto path1 = cast<SPShape>(doc->getObjectById("path1"));
auto oset = ObjectSet(doc.get());
oset.add(path1);
ASSERT_EQ(*path1->curve()->first_point(), Geom::Point(5, 5));
oset.pathReverse();
ASSERT_EQ(*path1->curve()->first_point(), Geom::Point(15, 15));
}
|