To enter, all you have to do is create a custom sketchy-edge Style for SketchUp and upload it to the 3D Warehouse. Winners will receive a Google SketchUp care package which will include a 3Dconnexion SpaceNavigator, along with other Google SketchUp goodies and an opportunity to have your style immortalized in future versions of the software. Up up to ten winners will be selected by our illustrious panel of judges.
You may enter this competition if you are 21 years of age or older and a resident of US or Canada. Good luck and we look forward to seeing what you create!
SketchUp Sketchy-Edge-Style Competition
YafRay Renderer
I subscribe to the YafRay renderer forum. I am constantly blown away by the renders from this free ray-tracer.
There's few references to SketchUp on the forum, however. The few people who are using SketchUp are exporting to Blender, or Lightwave before rendering.
There doesn't appear to be an exporter for SketchUp yet.
There's few references to SketchUp on the forum, however. The few people who are using SketchUp are exporting to Blender, or Lightwave before rendering.
There doesn't appear to be an exporter for SketchUp yet.
LWO Exporter Plugin for Google Sketchup
This is a basic LightWave object exporter for Google Sketchup 6. It may work in previous versions, but is completely untested there. All the usual provisos apply - this is VERY ALPHA software, which may wreck all your data and destroy any plans you had for actually leaving work on time for once. I make no promises *whatsoever* about its suitability for any purpose, at all.
That being said, you may find it useful in its current state. It exports the data in the SketchUp model to a LWO model file. It exports the geometry and material definitions, but only front materials are respected - back materials are completely ignored. Texture images are exported as UV mapped surface layers, and transparency is also supported. Smoothing is currently unsupported.
Alex Young
7th April 2007
Version: 0.0.6
download
homepage
You Never Write, You Never Call
If I've neglected to get back to anyone, on any issue, please don't hesitate to send a reminder.
Plugin: Instlaller (alpha)
I've started on a plugin for installing plugins from within SketchUp. It's in the very early stages yet.
I posted it over at SketchUcation.
link
I posted it over at SketchUcation.
link
Sun Tool Preview
This is a plugin for sun studies. It's in the very early stages. Comments and suggested use cases are appreciated. Giver 'er a try.
sun_tool_0.1.rb
sun_tool_0.1.rb
Plugin: Map Sun
I've uploaded Map Sun.
Map Sun plots points along the path the Sun takes durunbg a 24 hour day. It uses the date set in the Shadow Dialog.
The height of the Sun is fixed at 5 miles. I think it's far enough away - any farther and the model gots wonky.
Users will need to edit the script's timezone (tz) variable to set the correct timezone of where you live. Open the script in a text editor, change the value, and save the file.
map_sun_1.0
Map Sun plots points along the path the Sun takes durunbg a 24 hour day. It uses the date set in the Shadow Dialog.
The height of the Sun is fixed at 5 miles. I think it's far enough away - any farther and the model gots wonky.
Users will need to edit the script's timezone (tz) variable to set the correct timezone of where you live. Open the script in a text editor, change the value, and save the file.
map_sun_1.0
Plugin: Subdivide and Smooth
Whaat has posted an animated GIF showing off his subdivide script - let me just say it's amazing!
(link)
(link)
Another German Plugin: LTPlus DXF-PlugIN-V.7.1 DE
I'm not sure what else this plugin does, but I noticed the DXF export right away. It's a Ruby plugin based on Didier Bur's STL exporter, and thus the DXF export functionality can be isolated and made into a separate plugin - which I will do as soon as I have time.
(link)
(link)
Plugin: ripe ruby tomatoes
Tomatoes is a set of Ruby scripts for SketchUp for:
link
what are tomatoes?
tomatoes are a handful of simple but ingenious ruby programs.
tomatoes are running smoothly with sketchup from google.they generate quickly norm elements, prototypes,
residential space elements or wardrobes.
they generate directly into the existing
drawing or in a components library.room designer, carpenter and carpenter for kitchen
can quickly and convincingly customers a submit offer.
tomatoes - and they have the guarantees for a order in the bag!
even layman succeed, after a brief study
of the tutorials, a pans ready furniture to draw.
"sincere thanks master finewood, now i can imagine what in the good livingroom comes!"
link
Plugin: SUTool Plugin Organizer
Plugins menu getting crowded? wikii has posted his new plugin called SUTool over at SketchUcation Forums. SUTool is a WebDialog sidebar where you can create customized menus for your SketchUp plugins. It's in its early stages, but it works with some plugins (not all.)
I made a flash tutorial for installing and running it. Here's a quick demo video:
I made a flash tutorial for installing and running it. Here's a quick demo video:
Plugin: Show Model Options
A small debugging aid that shows a model's options. Select "Show Model Options" in the Plugins menu.
show_opts_1.0.rb
show_opts_1.0.rb
Ruby To Extract PNG Thumbnail From SKP
I am nearing completion of have posted some pure Ruby code that extracts the png thumbnail image from the SKP file. Did you know each .skp file has the thumbnail image embedded in it? That's what Windows Explorer uses to thumbnail .skp files.
SketchUp does not need to be running to extract the thumbnail, only the .skp file is needed.
This means what? If you host a model site, you don't need to manually load every model to generate a thumbnail - it can be automated. It can be used to create an index to your model files, or create web pages using the images. It can be used to create on-the-fly image galleries - and stuff like that.
The extracted png's are 128 pixels wide and about 70 pixels high, although the height varies for some reason.
It's command-line only right now, which is good enough for me.
extract_png.rb
SketchUp does not need to be running to extract the thumbnail, only the .skp file is needed.
This means what? If you host a model site, you don't need to manually load every model to generate a thumbnail - it can be automated. It can be used to create an index to your model files, or create web pages using the images. It can be used to create on-the-fly image galleries - and stuff like that.
The extracted png's are 128 pixels wide and about 70 pixels high, although the height varies for some reason.
It's command-line only right now, which is good enough for me.
extract_png.rb
SketchUp WebDialog & Javascript Library
I was wondering how to create a library of common functions that SketchUp-Ruby coders could use in their WebDialogs.
The example I have attempted to create is a width method for WebDialog - it returns the current width of the WebDialog window.
This is what I came up with. I am hoping someone with a higher understanding of Ruby/SketchUp/JavaScript can help me clean it up, and point me in the right direction.
w.rb
The example I have attempted to create is a width method for WebDialog - it returns the current width of the WebDialog window.
This is what I came up with. I am hoping someone with a higher understanding of Ruby/SketchUp/JavaScript can help me clean it up, and point me in the right direction.
w.rb
class UI::WebDialog
@_width = 1
def width
puts "executing getWidth()"
execute_script("getWidth();")
@_width
end
end
# Extend the Dialog s
def ex(s)
def s.setWidth(v)
@_width = v
end
s.add_action_callback("width") {|d, a| puts "width callback called."; s.setWidth a }
end
# Create a new dialog
w = UI::WebDialog.new
# Extend the dialog (w) to include a .width method.
ex(w)
html = %[
<html>
<head>
<script>
function getWidth() {
window.location = "skp:width@" + document.body.offsetWidth;
}
</script>
</head>
<body>
<button onClick="window.location='skp:test'">Click</button>
</body>
</html>
]
##########################################
# Everything above here would be in
# separate files and required as needed.
# So your main script would be small, and
# all the definitions forthe extended
# functionality would be hidden.
#
# Set the html file for the dialog
# f = File.dirname(__FILE__) + "/w.html"
#w.set_file( f )
w.set_html( html )
# add a simple test callback
w.add_action_callback("test") { |d, a|
print "The width of this dialog is: "
p w.width
}
# show the dialog
w.show
How to Set a WebDialog to Screen Center
I posted an example of how to set an initial position of a WebDialog using the onLoad event. It demonstrates one way to get the screen dimensions, the dialog size, and using a callback to set the dialog position.
I have tried using the javascript self.moveTo function in a WebDialog in order to avoid using the callback, but I can't get the dialog to respond to the function call.
View post.
I have tried using the javascript self.moveTo function in a WebDialog in order to avoid using the callback, but I can't get the dialog to respond to the function call.
View post.
Models: VELUX Skylights and Roof WIndows
VELUX America has made a wide range of its skylights and roof windows available online as 3-D models drawn in Google® SketchUp™.
3D Warehouse Collection.
Free vs. Pro Poll Results
There were 41 total voters.
19 Free
22 Pro
I don't have any keen insight about the numbers, although I expected there to be more Free users than Pro because, well it is free. Thanks everyone for participating.
19 Free
22 Pro
I don't have any keen insight about the numbers, although I expected there to be more Free users than Pro because, well it is free. Thanks everyone for participating.
Plugin: OBJ Exporter
Dec 18, 2010 - TIG just released a new .obj exporter. TIG's plugins are usually solid, so I recommend trying TIG's. (TIG's OBJexporter on SketchUcation)
2/5/2009 - Marten van der Honing sent me another .obj exporter that supports textures. See this post for download.
7/27/08
While the Pro version of SketchUp comes with the ability to export OBJ files, the free version does not.
This plugin was my attempt to write an OBJ exporter using SketchUp's Ruby API. My motivation was selfish curiosity more than anything, so when the plugin reached a state where it was able to export simple models, I lost interest.
There must have been a need for this exporter because some sites started linking here, and the plugin has now become one of my most downloaded - in spite of it's lack of features and abundance of flaws.
In it's current version, this exporter may or may not meet your needs:
Current "Features"
Finally, I want to thank everyone who has already helped me and given feedback - I can use all the help I can get.
Download
obj_export_1.1.rb
2/5/2009 - Marten van der Honing sent me another .obj exporter that supports textures. See this post for download.
7/27/08
While the Pro version of SketchUp comes with the ability to export OBJ files, the free version does not.
This plugin was my attempt to write an OBJ exporter using SketchUp's Ruby API. My motivation was selfish curiosity more than anything, so when the plugin reached a state where it was able to export simple models, I lost interest.
There must have been a need for this exporter because some sites started linking here, and the plugin has now become one of my most downloaded - in spite of it's lack of features and abundance of flaws.
In it's current version, this exporter may or may not meet your needs:
Current "Features"
- Exports entire model.
- Exports top-level Groups and Instances only (not nested entities).
- Has trouble with complex Faces.
Finally, I want to thank everyone who has already helped me and given feedback - I can use all the help I can get.
Download
obj_export_1.1.rb
Subscribe to:
Posts (Atom)
Popular Posts (Last 30 Days)
-
Sketchup materials library of 12x12 vinyl floor tiles. Download download
-
This SketchUp script assists the user in flattening, or unfolding, 3d objects onto a 2d plane. Installation Download unfoldtool.zip . M...
-
This importer lets you import both ASCII and binary STL files into SketchUp. It automatically detects the type of .stl file and imports acc...
-
The Construction Line Tool allows you to draw constructions lines in a similar way as the Pencil Tool. Toolbar: View > Toolbars >...
-
Apr 2014 * Renamed to MoveIt , and available in t SketchUcation Plugin Store Aug 16, 2009 * Released update fixing possible bugsplat...
-
This Windows-only plugin creates a Toolbar for controlling the Ruby Console It can open and close the Ruby console, clear the console, loa...
-
This is the first step in a greeble plugin. And by first step I mean there are possible bugs. Protrude performs 4 basic operations: div...
-
Dec 18, 2010 - TIG just released a new .obj exporter. TIG's plugins are usually solid, so I recommend trying TIG's. ( TIG's OBJe...
-
2010-09 * Updated for small bug in placement in SketchUp 8. toolbars-2010-09.zip This is an update to Custom Toolbars plugin with t...
-
As you probably know, SketchUp 8 Free does not include the ability import/export DXF/DWG files. Although there are some free and commercia...