sketchucation logo sketchucation
    • Login
    1. Home
    2. hebeijianke
    3. Posts
    Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
    🫛 Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
    H
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 43
    • Groups 1

    Posts

    Recent Best Controversial
    • 000

      !!=!! Name = 3skeng 管线工具 ; author=SHK 团队 ; version=2.0.009 ; Date= 01 Apr 11 ; required = ; comment = 是一个有时间限制的全功能版本 !!=!!

      posted in Developers' Forum
      H
      hebeijianke
    • RE: Double Line 2 (dline.rb update)

      @didier bur said:

      Hi,

      The trick is to press the TAB key anytime you want to set new parameters for your "walls". It's an enhancement by J. Foltz but I forgot to display it in the status bar.
      I've published a patch for dline2 on SU8 here: http://rhin.crai.archi.fr/rld/plugin_details.php?id=804

      Regards,
      [attachment=0:3j3upq39]<!-- ia0 -->dline2.jpeg<!-- ia0 -->[/attachment:3j3upq39]

      It is not work
      undefined method `file_loaded?' for main:Object

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Roof.rb

      It is not work for me
      Error: #<NoMethodError: undefined method to_f' for ["30"]:Array> F:/Google SketchUp 8/Plugins/Roof.rb:235:in dialog_hip'
      F:/Google SketchUp 8/Plugins/Roof.rb:278:in hip' F:/Google SketchUp 8/Plugins/Roof.rb:3984 F:/Google SketchUp 8/Plugins/Roof.rb:235:in call'
      F:/Google SketchUp 8/Plugins/Roof.rb:235
      Error: #<NoMethodError: undefined method to_f' for ["60"]:Array> F:/Google SketchUp 8/Plugins/Roof.rb:899:in dialog_man'
      F:/Google SketchUp 8/Plugins/Roof.rb:966:in mansard' F:/Google SketchUp 8/Plugins/Roof.rb:3985 F:/Google SketchUp 8/Plugins/Roof.rb:235:in call'
      F:/Google SketchUp 8/Plugins/Roof.rb:235
      Error: #<NoMethodError: undefined method to_f' for ["30"]:Array> F:/Google SketchUp 8/Plugins/Roof.rb:1615:in dialog_gable'
      F:/Google SketchUp 8/Plugins/Roof.rb:2262:in gable' F:/Google SketchUp 8/Plugins/Roof.rb:3802:in onLButtonDown'
      F:/Google SketchUp 8/Plugins/Roof.rb:899
      Error: #<NoMethodError: undefined method to_f' for ["30"]:Array> F:/Google SketchUp 8/Plugins/Roof.rb:3331:in dialog_pyramid'
      F:/Google SketchUp 8/Plugins/Roof.rb:3381:in pyramid' F:/Google SketchUp 8/Plugins/Roof.rb:3927:in onLButtonDown'
      F:/Google SketchUp 8/Plugins/Roof.rb:1615

      posted in Extensions & Applications Discussions
      H
      hebeijianke
    • RE: [Plugin] Compo Spray 1.4.2 Updated

      Error: #<TypeError: can't convert Array into Float>
      (eval):1752:in raytest' (eval):1752:in raytestH'
      (eval):2323:in cs_random_points' (eval):1160:in create_geometry'
      (eval):1052:in onLButtonDown' (eval):1752 Error: #<TypeError: can't convert Array into Float> (eval):1752:in raytest'
      (eval):1752:in raytestH' (eval):2323:in cs_random_points'
      (eval):1160:in create_geometry' (eval):1064:in onLButtonUp'
      (eval):1752

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Compo Spray 1.4.2 Updated

      THX
      But It does not work in my PC

      I know why it does not work
      I use it in sketchup8.0
      It works well in sketchup7.1

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin][WIP][OpenSource] Bezier Surface

      Its amazing
      THX

      posted in Plugins
      H
      hebeijianke
    • Is there A plugin like this(updata)

      Is there A plugin like this
      Anyone knows
      Please tell me
      THX
      Sorry
      I cant upload the image


      0.gif

      posted in Plugins
      H
      hebeijianke
    • RE: Whats these code mean?

      THX
      I got a plugin named Tooling
      It's in The Tooling file
      I upload it


      Tooling.rar

      posted in Plugins
      H
      hebeijianke
    • Whats these code mean?
      #requires face or faces within a selected group or number of groups
      require 'sketchup.rb'
      class Crack
      	def Crack;;groups
      	  # get the active model
      	  model = Sketchup.active_model
      	  #get currently selected objects
      	  selection_set = model.selection
      		cracks = 0
      		stepbystep = UI.messagebox "Exclude random faces from cracking?", MB_YESNOCANCEL, "Proceed"	#use to validate each face before its drawn
      		if stepbystep == 2
      			return nil
      		end
      		Sketchup.active_model.start_operation "Crack groups"
      		# loop through all the selected faces, and triangulate them
      		selection_set.each {|group|
      			#selection_set.remove group
      			if group.typename == "Group" then
      				maxcracks = group.entities.count * 2
      				group.entities.each {|entity|
      					if cracks > maxcracks then
      						return nil
      					end
      					entities = group.entities
      					if entity.typename == "Face" then #to crack a triangle
      						# get all the vertices for the current face
      						vertices = entity.vertices
      						# find the centroid - equals the average of all vertices, so lets add all coordinates together to divide it
      						centerx = 0
      						centery = 0
      						centerz = 0				
      						0.upto(vertices.length-1) do |vert|
      							centerx = centerx + (vertices[vert].position[0]/vertices.length)
      							centery = centery + (vertices[vert].position[1]/vertices.length)
      							centerz = centerz + (vertices[vert].position[2]/vertices.length)
      						end
      						geomcen = Geom;;Point3d.new(centerx,centery,centerz)
      						#prepare the randomly excluded face crack
      						random_exclusion = rand(vertices.length-1)
      						# insert the edges
      						0.upto(vertices.length-1) do |vindex|
      							if vindex != random_exclusion or stepbystep == 7 then
      								edge = entities.add_edges geomcen,vertices[vindex]
      								cracks = cracks + 1
      							end
      						end
      					end
      				}
      			end
      		}
      		Sketchup.active_model.commit_operation
      	end #def
      end #class
      if( not $cracking_menu_loaded )
        UI.menu("Plugins").add_item("Polygon Cracking") { Crack.groups }
      end
      
      
      
      
      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] HoverSelect - v1.5a - 07 Oct 17

      Thanks
      I see 😄

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] HoverSelect - v1.5a - 07 Oct 17

      Hi
      When I use this tool "Selection by rectangle:"
      If I select a line that is hiden
      It does not work

      posted in Plugins
      H
      hebeijianke
    • RE: [Tool] Extension Selector

      Good work
      THX................

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugins]$ Create image(rotate)

      Thank you for your work
      When the plugin running I used the orbit tool of the Skethup
      Then it stopped running
      Why?

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin][$] Curviloft 2.0a - 31 Mar 24 (Loft & Skinning)

      THX
      This is just your typo
      Thank you for your answer


      0.png

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin][$] Curviloft 2.0a - 31 Mar 24 (Loft & Skinning)

      THX for your great job
      I have a question
      What does this mean
      THX


      0.png

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugins]$ Create image(rotate)

      Your work is so great
      Can you provide a multi-language version
      Thank you

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Gradient Tools

      @tig said:

      I understand! Any face that is facing 'down' returns VERTICAL too...
      It was intended for roof/land-form slopes which are not usually upside down...
      BUT it's an easy fix... I'll post an update asap...

      THX
      Your are so Warm-hearted

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Gradient Tools

      Look this


      0.png

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Gradient Tools

      TIG
      THX
      I have a Question
      When I use "Tag Faces"
      It tags always "VERTICAL" or "HORIZONTAL"
      Is it right?

      posted in Plugins
      H
      hebeijianke
    • RE: [Plugin] Make Fur v.2.1.0(20140323)

      A Chinese translation.
      Thanks to you all !


      fur_lang_cn.txt


      1.jpg

      posted in Plugins
      H
      hebeijianke
    • 1
    • 2
    • 3
    • 2 / 3