Get 3D online houses, cars, clothes, etc. for free
Free objects to put in your World
To add an object to your land, just add the following code to yourland.wrl:
Inline {
url "http://www.int3d.com/esempi/villas/villas.wrl"
}
and add URL by your own choice from millions of free VRML objects from around the web:
Below is the whole code you need to put an object on your land, to put it on desired location, rotate it and resize it if it doesn't fit the size of your world:
Inline {
url "http://www.int3d.com/esempi/villas/villas.wrl"
}
Transform {
# where to put the object:
translation 0 0 0
# how to rotate it (radians):
rotation 0 0 0.5
children [
Inline {
url "linki.wrl"
# how big is inserted
# object related to
# your world
bboxSize 1 1 1
}
]
}
That's it! Writing few lines instead paying hundereds of dollars to "buy" it.
|