sketchucation logo sketchucation
    • Login
    1. Home
    2. remus
    3. Topics
    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!
    🚨 Skimp | 25% Off until March 30 Buy Now
    R
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 379
    • Posts 7,060
    • Groups 1

    Topics

    • R

      [req] Control over sketchy replay frame rate

      Watching Ignoring Scheduled Pinned Locked Moved SketchyPhysics
      6
      0 Votes
      6 Posts
      662 Views
      B
      @remus said: Sorry, from the animations id done already sr=sp*10 worked so i assumed (classic mistake) after reading your post that it was always like that. Its making more sense now, though. Thanks for the explanation Actually, the amount of frames in sr and sp are the same. The fps will vary though. For sr, it will be faster, because your computer has to think more during the sp animation. For more complex models, the sp animation fps will be even slower.
    • R

      Murdoch attack on 'dominant' BBC

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      2
      0 Votes
      2 Posts
      239 Views
      P
      Too true mate!
    • R

      SP animations

      Watching Ignoring Scheduled Pinned Locked Moved Gallery
      20
      0 Votes
      20 Posts
      3k Views
      pilouP
      Sang revealed is a true gem
    • R

      Guess what It Is

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      17
      0 Votes
      17 Posts
      812 Views
      A
      And also impressive the last paragraph: combining the two techniques. If they can map the structure and also distinguish the elements, I would not need anymore to struggle with those spectra: [image: ucQG_IR_pentacene.jpg] That's like if you take a single molecule in your hands, touch it and feel the structure.
    • R

      A Self-Congratulatory Moment

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      26
      0 Votes
      26 Posts
      1k Views
      EdsonE
      great news, remus. keep it up.
    • R

      ZBrush users in here?

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      1
      0 Votes
      1 Posts
      345 Views
      No one has replied
    • R

      Real time Vray

      Watching Ignoring Scheduled Pinned Locked Moved V-Ray render plugins extensions
      1
      0 Votes
      1 Posts
      707 Views
      No one has replied
    • R

      Render Nodes

      Watching Ignoring Scheduled Pinned Locked Moved Hardware, Software & Gadgets
      1
      0 Votes
      1 Posts
      276 Views
      No one has replied
    • R

      3d filter

      Watching Ignoring Scheduled Pinned Locked Moved Hardware, Software & Gadgets
      7
      0 Votes
      7 Posts
      735 Views
      D
      Can't believe i only just spotted this thread, Cheers for the link remus.. much appreciated The only major site missing from the search is Turbosquid, but that will be added in the next few weeks.
    • R

      [Plugin] Multi face offset

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      49
      0 Votes
      49 Posts
      67k Views
      pilouP
      @unknownuser said: do a sequence of offsets, etc... is this a different plugin?? Multiple Offsets (list etc...) is by Sdmitch
    • R

      Watch 'em squirm

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      5
      0 Votes
      5 Posts
      376 Views
      EdsonE
      come to think of it, which country is not run by imbeciles? good people have better things to do than get involved in politics. a politician that is not a moron is the absolute exception. of course, from time to time there comes one but they are far between.
    • R

      UK local elections

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      8
      0 Votes
      8 Posts
      452 Views
      DanielD
      We tend to have such pathetic voter turn-outs for local elections here inthe U.S., also. Then everyone complains about corrupt politicians. But what can you expect? Such low turn-out sends the message that most people don't care, so the politicians do what they want. About the only constituency they have to pander to are the elderly, as they seem to be the ones group who do regularly turn out to vote.
    • R

      [CityGen] Standard Output

      Watching Ignoring Scheduled Pinned Locked Moved City Generator
      3
      0 Votes
      3 Posts
      11k Views
      thomthomT
      I just made the Street Generator pick out the area's between the streets, blocks, and generate a set of faces for them. Which can then be used by another module to generate pavements, and lots to generate housed from. It's currently an option set during when you create the streets. Should I fork it into a separate module? Block Finder. And have the street generator rely on that module? Also, I'm marking all the generated geometry with and attribute dictionary. The dictionary name indicate what type of data the group contains. 'CG_Streets' -> The street geometry generated from the centre lines. 'CG_Block' -> Geometry of the space between the streets - blocks. (Should probably be 'CG_Blocks'?) Propose that modules that generate centre lines tags it 'CG_Street_Map'. Each dictionary contains a 'Generator' attribute. It indicate which module and version generated the geometry. (In case we need to determine this.) The Generator ID is built up of two parts; module ID and version number. Example, the Street Generator has a Generator ID that looks like this: 'Street_Gen-0.4.0' The string is split by a hyphen. Extract of the code: module City_Gen module Street_Gen ### CONSTANTS ### -------------------------------------------------------------------------- unless file_loaded?('street_gen.rb') VERSION = '0.4.0' MODULE_ID = 'Street_Gen' GENERATOR_ID = MODULE_ID + '-' VERSION end ... # Group containing generated geometry. g = model.entities.add_group g.set_attribute('CG_Streets', 'Generator', self;;GENERATOR_ID)
    • R

      . color method

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      5
      0 Votes
      5 Posts
      317 Views
      TIGT
      For a color it's always = 255 [100% opaque]... there is a color.alpha= method but it's never ever worked, you must set alpha [transparency] for a material itself not material.color e.g. material.alpha=0.4 for 40% opacity will work but the material.color.alpha still reports 255 [100%], if you try to change it, it just does nothing ! So to recap - the fourth item in a SUp material.color array is its alpha [r,g,b,a] but it's not used ! The alpha of the material itself works as a 0 to 1.0, equivalent to % setting of opacity... http://code.google.com/apis/sketchup/docs/ourdoc/color.html
    • R

      [CityGen] City generator

      Watching Ignoring Scheduled Pinned Locked Moved City Generator
      62
      0 Votes
      62 Posts
      64k Views
      thomthomT
      Ah. This is probably why. Modules to CityGen, such as StreetGen, should be located under the module folder you find the the CityGen folder. It is mentioned in the instructions, but I know it's not necessarily obvious. On the StreetGen page it's mentioned in the small prints under the download. On the CityGen page is described under "Core and Installation Check". This whole project is very much work in progress (except that there has been little progress the last year) - so all our instructions are not that obvious to follow. We where talking about installers, but the project fell down from out priorities before we got to that point. So, what I think you need to do is remove all the CityGen and StreetGen files you added to your plugins folder. Then see if your other plugins work. If they do work, then first install CityGen core Then install StreetGen to the modules folder of CityGen.
    • R

      Cheese rolling

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      10
      0 Votes
      10 Posts
      538 Views
      T
      Although I never actually entered the run, I did run down that hill quite a few times in my childhood. Oh, and rolled down it a few as well. Some aged relatives lived in a tiny cottage somewhere on the hill and I got to visit during summers spent with my grandparents- so long ago that it was even before anyone walked on the Moon.
    • R

      140 charachter picture encoding

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      2
      0 Votes
      2 Posts
      243 Views
      TIGT
      My alternative approach using ASCII characters... : ) ... Large, but 2116 characters [image: 3ryB_MonaLisaLarge.jpg] Medium, but 564 characters [image: 468X_MonaLisaMedium.jpg] Small, 140 characters - BUT you need to squint a bit... [image: 1Sf6_MonaLisaSmall.jpg]
    • R

      Boulders

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Components, Materials & Styles sketchup
      15
      0 Votes
      15 Posts
      2k Views
      T
      @remus said: ...then i give to you 30 boulders for your continued enjoyment. thanks for the boulders! [image: p8Q1_20090529172518_1m4s.png]
    • R

      "I'm ready to lose control, but they're not"

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      91
      0 Votes
      91 Posts
      5k Views
      GaieusG
      %(#FF0000)[**Topic locked because it has no longer anything to do with the original topic and only turned into personal assaults on several sides. Please, those whose "permissions" would allow further posting (like mods for instance) in a locked topic, refrain from posting, too.**]
    • R

      From the bowels of the internet...

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      8
      0 Votes
      8 Posts
      503 Views
      R
      What scares me the most is that some people will undoubtedly try and peddle this site as a good resource.
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 18
    • 19
    • 4 / 19