This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module JF | |
def self.draw_camera_axes | |
camera = Sketchup.active_model.active_view.camera | |
eye = camera.eye | |
entities = Sketchup.active_model.active_entities | |
entities.add_cpoint(eye) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Trim and Keep (C) Copyright 2011 [email protected] | |
# Version: 0.1 | |
# gist_id: 39395cc0e6c6ec0010f3 | |
# | |
# Trim and Keep aims to "fix" SketchUp Pro's Solid Tools Trim function. As it currently | |
# works, SketchUp's trim changes ComponentInstances into Groups. | |
# | |
require 'sketchup' | |
module JF; class TrimAndKeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module JF | |
module Nudge | |
class NudgeTool | |
def enableVCB? | |
true | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# file: unhide-all.rb | |
# author: [email protected] | |
require 'sketchup.rb' | |
module JF | |
module UnhideAll | |
def self.start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Switches the active Layer to "DIMS" when DimensionTool is used. | |
# Puts all Dimensions on DIMS Layer. | |
module JF | |
module DimLayer | |
DIM_LAYER_NAME = "DIMS" | |
class AppObserver < Sketchup::AppObserver | |
def expectsStartupNotifications() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE "Patient Medication" IF EXISTS; | |
DROP TABLE "Medication" IF EXISTS; | |
DROP TABLE "Payment" IF EXISTS; | |
DROP TABLE "Schedule" IF EXISTS; | |
DROP TABLE "Assignment" IF EXISTS; | |
DROP TABLE "Therapists Number" IF EXISTS; | |
DROP TABLE "Phone Number" IF EXISTS; | |
DROP TABLE "Patient" IF EXISTS; | |
DROP TABLE "Psychiatrist" IF EXISTS; | |
DROP TABLE "Medical Doctor" IF EXISTS; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Right-click an Instance to move it and all sub-components | |
# to a new set of Layers prefixed by component name. | |
# Use to keep imported models off your Layers. | |
# | |
module JF | |
module ComponentLayers | |
def self.separator | |
"__" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module JF | |
module DetectDC | |
DICT = "dynamic_attributes" | |
class AppObserver < Sketchup::AppObserver | |
def expectsStartupModelNotifications() | |
return true | |
end | |
def onOpenModel(model) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node | |
attr_reader :ins, :name, :path | |
def initialize(ins, path, name) | |
@ins = ins | |
@path = path | |
@name = name | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#get vertices | |
def start | |
#get vertices | |
verts=[] #initialize vertices array | |
trans_h=[] #initialize transformation array use to store hierarchy of transformations | |
verts=createVerticesArray(sel,trans_h,verts) | |
end | |
def createVerticesArray(sel,trans_h,verts) | |
sel.each{|ent| |