sketchucation logo sketchucation
    • Login
    1. Home
    2. RobertCarlRice
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
    R
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 1

    RobertCarlRice

    @RobertCarlRice

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    RobertCarlRice Unfollow Follow
    registered-users

    Latest posts made by RobertCarlRice

    • RE: Ruby Documentation - you can help update it!
      def ChangeCircleRadius( circle, center, radius )
      	pts = Array.new
      	curve = circle.first.curve
      	curve.vertices.each do | vertex |
      		vec = vertex.position - center
      		vec.length = radius
      		pts << center + vec
      	end
      	curve.move_vertices( pts )
      end
      
      posted in Developers' Forum
      R
      RobertCarlRice
    • Intersection failures

      I depend on the intersection API for my mechanical drawings. I have observed that intersection (either from the API or the UI) fails to find all intersections if a circle vertex falls on an edge. Moving the circle slightly relative to the edge will fix the problem.

      Bob Rice

      posted in SketchUp Bug Reporting sketchup
      R
      RobertCarlRice