File: property_value.py

package info (click to toggle)
k3d 0.8.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 40,692 kB
  • ctags: 39,695
  • sloc: cpp: 171,303; ansic: 24,129; xml: 6,995; python: 5,796; makefile: 726; sh: 22
file content (24 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#python

import k3d

doc = k3d.new_document()

axes = k3d.plugin.create("Axes", doc)
axes.axes = True
axes.xyplane = False

# Confirm that setting a property dependency works ...
k3d.property.connect(doc, axes.get_property("axes"), axes.get_property("xyplane"));

if axes.get_property("xyplane").internal_value() != False:
	raise "incorrect internal value"

if axes.get_property("xyplane").pipeline_value() != True:
	raise "incorrect pipeline value"

# Confirm that removing a property dependency works ...
k3d.property.disconnect(doc, axes.get_property("xyplane"))

if axes.get_property("xyplane").pipeline_value() != False:
	raise "incorrect pipeline value"