Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add billboard capability #139

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "meshcat/viewer"]
path = src/meshcat/viewer
url = https://github.com/rdeits/meshcat.git
url = https://github.com/kingjin94/meshcat.git
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages

setup(name="meshcat",
version="0.3.2",
version="0.3.2a",
description="WebGL-based visualizer for 3D geometries and scenes",
url="https://github.com/rdeits/meshcat-python",
download_url="https://github.com/rdeits/meshcat-python/archive/v0.3.2.tar.gz",
Expand Down
41 changes: 41 additions & 0 deletions src/meshcat/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,47 @@ def lower(self):
return data


class BillboardObject(Object):
def __init__(self, text, base_width, size, global_scale=1, text_color='white', background_color='blue'):
"""

:param text: Text to put on the billboard
:param base_width: Width of the billboard in pixels
:param size: Height of the text in pixels
:param global_scale: Scale factor to apply to the billboard (0.01 gets it to roughly meter size)
:param text_color: Color name for the text
:param background_color: Color name for the background
"""
super(BillboardObject, self).__init__([])
self.text = text
self.base_width = base_width
self.size = size
self.global_scale = global_scale
self.text_color = text_color
self.background_color = background_color

def lower(self):
return {
u"metadata": {
u"version": 4.5,
u"type": u"_billboard",
},
u"geometries": [],
u"materials": [],
u"object": {
u"uuid": self.uuid,
u"type": u"_billboard",
u"text": self.text,
u"base_width": self.base_width,
u"size": self.size,
u"global_scale": self.global_scale,
u"matrix": np.eye(4).flatten().tolist(),
u"text_color": self.text_color,
u"background_color": self.background_color,
}
}


class Mesh(Object):
_type = u"Mesh"

Expand Down
12 changes: 12 additions & 0 deletions src/meshcat/servers/zmqserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import base64
import os
import re
import signal
import sys
import subprocess
import multiprocessing
Expand Down Expand Up @@ -406,10 +407,21 @@ def main():
if results.open:
webbrowser.open(bridge.web_url, new=2)

def cleanup():
bridge.zmq_socket.close()
bridge.context.destroy()

# Make sure also kill results in socket being closed otherwise ZMQbg/Reaper and IO processes might stay open
atexit.register(cleanup)
signal.signal(signal.SIGTERM, cleanup)
signal.signal(signal.SIGINT, cleanup)

try:
bridge.run()
except KeyboardInterrupt:
pass
finally:
cleanup()

if __name__ == '__main__':
main()
2 changes: 1 addition & 1 deletion src/meshcat/viewer
7 changes: 7 additions & 0 deletions src/meshcat/visualizer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import signal
import webbrowser
import umsgpack
import numpy as np
Expand Down Expand Up @@ -79,6 +80,12 @@ def get_image(self, w, h):
img = Image.open(io.BytesIO(img_bytes))
return img

def close(self):
self.zmq_socket.close()
self.context.destroy()
if self.server_proc is not None:
self.server_proc.kill()
self.server_proc.wait()

def srcdoc_escape(x):
return x.replace("&", "&").replace('"', """)
Expand Down