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
|
# Copyright (c) 2018-2019 Manfred Moitzi
# License: MIT License
from ezdxf.lldxf.types import DXFVertex
def test_init():
v = DXFVertex(10, (1, 2, 3))
assert v.value == (1.0, 2.0, 3.0)
def test_clone():
v = DXFVertex(10, (1, 2, 3))
v2 = v.clone()
assert v2.code == v.code
assert v2.value == v.value
def test_dxf_tags():
v = DXFVertex(10, (1, 2, 3))
tags = tuple(v.dxftags())
assert tags[0] == (10, 1.0)
assert tags[1] == (20, 2.0)
assert tags[2] == (30, 3.0)
def test_dxf_string():
v = DXFVertex(10, (1, 2, 3))
assert v.dxfstr() == " 10\n1.0\n 20\n2.0\n 30\n3.0\n"
def test_xdata_string():
v = DXFVertex(1011, (1, 2, 3))
assert v.dxfstr() == "1011\n1.0\n1021\n2.0\n1031\n3.0\n"
|