示例#1
0
    public void MoveVertexTo(int vertexId, Vector3 localSpaceDestination)
    {
        var position = _manifold.VertexPosition(vertexId);

        _manifold.MoveVertexAlongVector(vertexId, localSpaceDestination - position);
    }