Surface JSON Data

../../_images/example_surface_jsondata.png
from compas.geometry import NurbsSurface
from compas.geometry import Point
from compas_viewer import Viewer

points = [
    [Point(0, 0, 0), Point(1, 0, 0), Point(2, 0, 0), Point(3, 0, 0)],
    [Point(0, 1, 0), Point(1, 1, 2), Point(2, 1, 2), Point(3, 1, 0)],
    [Point(0, 2, 0), Point(1, 2, 2), Point(2, 2, 2), Point(3, 2, 0)],
    [Point(0, 3, 0), Point(1, 3, 0), Point(2, 3, 0), Point(3, 3, 0)],
]

surface = NurbsSurface.from_points(points=points)

# ==============================================================================
# JSON Data
# ==============================================================================

string = surface.to_jsonstring(pretty=True)

print(string)

other = NurbsSurface.from_jsonstring(string)

print(surface == other)

# ==============================================================================
# Visualisation
# ==============================================================================

viewer = Viewer()

u = surface.isocurve_u(0.5 * sum(surface.domain_u))
v = surface.isocurve_v(0.5 * sum(surface.domain_v))

viewer.scene.add(u.to_polyline(), linewidth=1, linecolor=(0.3, 0.3, 0.3))
viewer.scene.add(v.to_polyline(), linewidth=1, linecolor=(0.3, 0.3, 0.3))

for curve in surface.boundary():
    viewer.scene.add(curve.to_polyline(), linewidth=2, linecolor=(0, 0, 0))

viewer.scene.add(other)
viewer.show()
{
    "is_u_periodic": false,
    "is_v_periodic": false,
    "points": [
        [
            [
                0.0,
                0.0,
                0.0
            ],
            [
                1.0,
                0.0,
                0.0
            ],
            [
                2.0,
                0.0,
                0.0
            ],
            [
                3.0,
                0.0,
                0.0
            ]
        ],
        [
            [
                0.0,
                1.0,
                0.0
            ],
            [
                1.0,
                1.0,
                2.0
            ],
            [
                2.0,
                1.0,
                2.0
            ],
            [
                3.0,
                1.0,
                0.0
            ]
        ],
        [
            [
                0.0,
                2.0,
                0.0
            ],
            [
                1.0,
                2.0,
                2.0
            ],
            [
                2.0,
                2.0,
                2.0
            ],
            [
                3.0,
                2.0,
                0.0
            ]
        ],
        [
            [
                0.0,
                3.0,
                0.0
            ],
            [
                1.0,
                3.0,
                0.0
            ],
            [
                2.0,
                3.0,
                0.0
            ],
            [
                3.0,
                3.0,
                0.0
            ]
        ]
    ],
    "u_degree": 3,
    "u_knots": [
        0.0,
        1.0
    ],
    "u_mults": [
        4,
        4
    ],
    "v_degree": 3,
    "v_knots": [
        0.0,
        1.0
    ],
    "v_mults": [
        4,
        4
    ],
    "weights": [
        [
            1.0,
            1.0,
            1.0,
            1.0
        ],
        [
            1.0,
            1.0,
            1.0,
            1.0
        ],
        [
            1.0,
            1.0,
            1.0,
            1.0
        ],
        [
            1.0,
            1.0,
            1.0,
            1.0
        ]
    ]
}