sketchucation logo sketchucation
    • Login
    1. Home
    2. jderekito
    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!
    🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
    J
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Groups 1

    jderekito

    @jderekito

    10
    Reputation
    1
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    jderekito Unfollow Follow
    registered-users

    Latest posts made by jderekito

    • RE: Imported image becomes darkened on orbit

      Thanks Anssi for that great explanation.

      Cheers,
      Derek

      posted in Newbie Forum
      J
      jderekito
    • Imported image becomes darkened on orbit

      Hello,
      I am still fairly new to SketchUp so I am posting this on the newbie forum. I have created a image screen shot of a street map from google maps (jpeg). I imported this image into my sketchup model and positioned it on the x/y plane and sized it accordingly. For now I am cool w/ it being only a 2d image. My problem is that when I orbit to a different angle such as orbit the imported image becomes darkened. I would rather it stay the same original color. Is this possible?

      Thanks,
      Derek


      MyPicture1.gif

      posted in Newbie Forum sketchup
      J
      jderekito
    • RE: Oblique cone

      Thanks remus that helps alot. Seems so simple now in retrospect.

      Cheers,
      Derek

      posted in SketchUp Discussions
      J
      jderekito
    • Oblique cone

      Hello,
      I have found some documentation of how to create a cone via a method either w/ prism or a circle and the follow me tool. This seems to work pretty well. What I was hoping is that someone may know how to draw what is called a oblique cone. It is a cone where the apex is not centered over the base of the cone. See: http://www.mathwords.com/o/oblique_cone.htm

      Any help is greatly appreciated,

      Thanks,
      Derek

      posted in SketchUp Discussions sketchup
      J
      jderekito
    • RE: Drawing line based on fed coordinates

      Thanks TIG,
      The defaulting to inches explains it. For now I am just trying to draw a single line. If I just drawing a single line does it still need the face and edges. Thanks again for you assistance as I am still learning my way around SU.

      Derek

      posted in Developers' Forum
      J
      jderekito
    • Drawing line based on fed coordinates

      Hello,
      I am somewhat new to SketchUp but am quite excited about the possibilities of it. Here is my question and hopefully someone can help. My goal is to write a ruby script to draw a line between two defined points. I have created a new blank model and drawn a rectangle on the x and y axis. I am testing this by locating one of the the x,y,z coordinates of the rectangle by using the text tool to show the points (e.g. ~ 0.79m, ~ 0.60m, 0.00m). So I just trying to start at that corner and draw a line straight up the Z axis programmatically. However, it is being draw somewhere way closer to the origin of the model around 0.02m, ~ 0.02m, 0.00m. I was hoping someone could point me in the write direction with doing this. Thanks ahead of time.

      require 'sketchup.rb'

      def draw_simple
      pt1 = Geom::Point3d.new(0.79, 0.60, 0.00)
      pt2 = Geom::Point3d.new(0.79, 0.60, 1.00)
      model = Sketchup.active_model
      new_face = model.entities.add_line(pt1, pt2)
      new_face.pushpull 10
      end #def draw_spacetimepath

      UI.menu("PlugIns").add_item("simple") { draw_simple }

      Thanks,
      Derek

      posted in Developers' Forum
      J
      jderekito