sketchucation logo sketchucation
    • 登入
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    Sketchup is Inacurrate???

    已排程 已置頂 已鎖定 已移動 SketchUp Discussions
    sketchup
    513 貼文 38 Posters 49.4k 瀏覽 38 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • A 離線
      ArCAD-UK
      最後由 編輯

      I can see the argument from both sides for arc offsets because in the past I've wanted both results. Ideally SU will be given true arcs at some point. But from this thread I now understand why things are the way they are and on balance from an architectural perspective I prefer to have any offset from an arc create a consistent (wall) thickness which is what happens now rather than tapering the arc section to maintain a vertex offset.

      1 條回覆 最後回覆 回覆 引用 0
      • pilouP 離線
        pilou
        最後由 編輯

        And about surface? 😉
        A disc of 1 m radius
        12 segments is 3.00m2
        24 segments is 3.11 m2
        36 segments is 3.13 m2
        100 segments is 3.14 m2

        10 m radius
        12 segments is 300 m2
        24 segments is 310.58 m2
        36 segments is 312.57 m2
        100 segments is 313.95 m2

        And I suppose that will be more dramatic with volume 😉

        So accurate for Sketch and drawing representation not for precises measures in case of Arc, Circle, Curves...

        Frenchy Pilou
        Is beautiful that please without concept!
        My Little site :)

        1 條回覆 最後回覆 回覆 引用 0
        • TIGT 離線
          TIG Moderator
          最後由 編輯

          To stop the issue... here's an Arc_Offet_True tool http://forums.sketchucation.com/viewtopic.php?p=395769#p395769
          It has a few issues with Arcs with trimmed first/last segments BUT I'm working on that...
          EDIT:
          Version v1.1 now correctly mimics the original Arc's start/end segments if they were 'trimmed', it also stops you offsetting with a negative distance to 'zero' or beyond...
          Version v1.2 now has a 'Number' option to make arrayed offsets, and a context-menu item too...

          TIG

          1 條回覆 最後回覆 回覆 引用 0
          • N 離線
            noelwarr
            最後由 編輯

            Wow! Lots of posts. Think I've read through them all but I don't think the following has been pointed out... Sketchup is based on floating point data structure. These are inherently inaccurate. Try the following out in the ruby console

            (Math::PI).to_l
            => 3.14159265358979
            (Math::PI * 10**13).to_l
            => 31415926535897.9

            This means that the further away from the origin your entities are, the more inaccurate they are.

            Floats are a lightweight data structure ideal for a program like Sketchup. There are others that are actually capable of manipulating irrational numbers (pi, square root of two...check out GMP) without ever loosing accuracy but they are very heavy weight and only really necessary if you're, I don't know, sending a rocket to the moon or something.

            Sketchup overcomes this floating point inaccuracy by allowing for a little tollerance but as you can see the difference is still there

            point1.to_s + point2.to_s
            => (258,878708mm, 172,933835mm, 0mm)(0mm, 0mm, 0mm)
            point1.z == point2.z
            => true
            point1.to_a
            => [10.1920751212053, 6.80841870273468, 1.77635683940025e-015]
            point2.to_a
            => [0.0, 0.0, 0.0]

            Nonetheless Sketchup is a great tool and its inaccuracy (that is also present in those other "more professional" packages!) can be overlooked 99% of the time. Hope this was of use to anyone.

            1 條回覆 最後回覆 回覆 引用 0
            • T 離線
              Trogluddite
              最後由 編輯

              @noelwarr said:

              Sketchup is based on floating point data structure. These are inherently inaccurate.

              Quite so, I have to deal with this often in my "alter ego" as an audio DSP designer.

              The fact that us humans use decimal, and PC's use binary also has some consequences for accuracy.
              Just as decimal cannot exactly represent 1/3, binary cannot exactly represent 1/10 - the value to be represented and the number base have unshared prime factors.

              A lot of software will display rounded values, so that they look a little more palatable to us humans - but it is a mistake to assume that the display value is exactly the same as the underlying float number. If your display is telling you that your dimension is exactly 0.1units, it is probably lying, as a float number simply cannot have exactly that value, only an approximation.

              Never occured to me before, but in this binary age, maybe the traditional "powers of two" divisions of the inch make more sense than decimal notation - those power of two factors can always be represented precisely in binary (up to the limit of the bit-depth) - so 1/16" really is 1/16, whereas 0.1m is only pretending!

              1 條回覆 最後回覆 回覆 引用 0
              • S 離線
                sonder
                最後由 編輯

                Well, thank god for construction industry standards allowing actual built accuracy to be 1/16" in ten feet or greater for different trades!

                1 條回覆 最後回覆 回覆 引用 0
                • genma saotomeG 離線
                  genma saotome
                  最後由 編輯

                  Regarding my original assertion about the inaccuracy of the follow me tool -- I now understand I had not set up my work to be "compatible" with the way follow me works. Had I added tangents to each end of my arc and extruded the face along tangent, arc, tangent I'd get a middle section that was exactly what I wanted.

                  I'm not sure how to judge the implications of that fact WRT accuracy but I do know it is less work for me to do it that way than I had to deal with before and so while I'm not 100% happy about it, it is a better method. To everyone who helped to explain this, my thanks!

                  1 條回覆 最後回覆 回覆 引用 0
                  • M 離線
                    mac1
                    最後由 編輯

                    @noelwarr said:

                    Wow! Lots of posts. Think I've read through them all but I don't think the following has been pointed out... Sketchup is based on floating point data structure. These are inherently inaccurate. Try the following out in the ruby console

                    (Math::PI).to_l
                    => 3.14159265358979
                    (Math::PI * 10**13).to_l
                    => 31415926535897.9

                    This means that the further away from the origin your entities are, the more inaccurate they are.

                    Floats are a lightweight data structure ideal for a program like Sketchup. There are others that are actually capable of manipulating irrational numbers (pi, square root of two...check out GMP) without ever loosing accuracy but they are very heavy weight and only really necessary if you're, I don't know, sending a rocket to the moon or something.

                    Sketchup overcomes this floating point inaccuracy by allowing for a little tollerance but as you can see the difference is still there

                    point1.to_s + point2.to_s
                    => (258,878708mm, 172,933835mm, 0mm)(0mm, 0mm, 0mm)
                    point1.z == point2.z
                    => true
                    point1.to_a
                    => [10.1920751212053, 6.80841870273468, 1.77635683940025e-015]
                    point2.to_a
                    => [0.0, 0.0, 0.0]

                    Nonetheless Sketchup is a great tool and its inaccuracy (that is also present in those other "more professional" packages!) can be overlooked 99% of the time. Hope this was of use to anyone.

                    See my 3-16 post above and has been addressed before. The reason some packages show more accuracy the spec allows for extened or extendable implimentations. The single float 32 is only good to 7.225 digits.

                    1 條回覆 最後回覆 回覆 引用 0
                    • jeff hammondJ 離線
                      jeff hammond
                      最後由 編輯

                      @unknownuser said:

                      Well, thank god for construction industry standards allowing actual built accuracy to be 1/16" in ten feet or greater for different trades!

                      that tolerance should be set aside for the builders though.. with framing, i generally give my crew an 1/8" before i start bching at them or start contemplating a redo..

                      but, if i do that in the drawing.. say, give myself an eight in the model, then i'm looking at 1/4" errors onsite.. or, my crew has to be 100% perfect according to the drawing (i.e.-basically impossible)

                      EDIT
                      well, i already do cut in to the tolerance a bit when handing out a cultist.. everything is rounded to the 16th" even if the drawing calls for x/32" etc.. but yeah, there's definitely some allowable play in there.. i just prefer the drawing or calculations to be as close to perfect as possible (mainly because i think it IS possible.. we are dealing with computers here 😉 ).. and as i said early in the thread, sketchup is highly accurate and 100% capable of fulfilling my needs.. the rest of my babbling about in this thread has be regarding one small situation which (i feel) is mistreated in sketchup.. and i can still draw those parts accurately in sketchup-- i just use a different approach than whats offered in the automated toolset (offset tool/followme tool)

                      dotdotdot

                      1 條回覆 最後回覆 回覆 引用 0
                      • thomthomT 離線
                        thomthom
                        最後由 編輯

                        @unknownuser said:

                        when handing out a cultist..

                        😮 😲 😕

                        Thomas Thomassen — SketchUp Monkey & Coding addict
                        List of my plugins and link to the CookieWare fund

                        1 條回覆 最後回覆 回覆 引用 0
                        • Rich O BrienR 線上
                          Rich O Brien Moderator
                          最後由 編輯

                          You dare judge Brother Jeff?

                          Download the free D'oh Book for SketchUp 📖

                          1 條回覆 最後回覆 回覆 引用 0
                          • pilouP 離線
                            pilou
                            最後由 編輯

                            These 1/4", 1/8", 1/16", 1/32" are for me perfect obscurantist measures from occultism ! 💚

                            Frenchy Pilou
                            Is beautiful that please without concept!
                            My Little site :)

                            1 條回覆 最後回覆 回覆 引用 0
                            • thomthomT 離線
                              thomthom
                              最後由 編輯

                              @unknownuser said:

                              These 1/4", 1/8", 1/16", 1/32" are for me perfect obscurantist measures from occultism ! 💚

                              😆

                              Thomas Thomassen — SketchUp Monkey & Coding addict
                              List of my plugins and link to the CookieWare fund

                              1 條回覆 最後回覆 回覆 引用 0
                              • TIGT 離線
                                TIG Moderator
                                最後由 編輯

                                [off:2hxvcf0c]In the UK at least no one uses the arcane 'pounds, shillings and pence' any more!
                                The UK dragged itself into the 20th century when I was a lad...
                                12 pence = 1 shilling
                                20 shillings = 1 pound
                                There were even coins as ha'penny [½d] and farthing [¼d]
                                [somewhat illogically 'd'=pence 😒 ]
                                We had other coins worth 1d[penny],3d[joey],6d[tanner], 1s[bob],2s[2-bob/florin],2s/6d[half-crown] and banknotes for 10s[10-bob],£1[a quid],£5[a fiver]...
                                There were also olde coins for 5s [crown] and guinea [£1/1s]***
                                So something would be priced as "£1/10s/4½d"
                                Nows we have decimal pounds/pence and coins up to £2.
                                So it is now approx. £1.53.........

                                *** The 'guinea' was an interesting idea.
                                If you were doing a service like an auctioneer you priced/charged the buyer in guineas and paid the seller in pounds - thereby keeping the standard 5% commission [1s is 1/20=5% of £1].
                                Having a base-12 shilling [like the feet/inch system!] allows you to divide it up into 1/4,1/3,1/2,2/3,3/4 and 1/6ths [and with ½d you jumpp to base-24 so 1/8ths are possible - 1½d was 1/8th of a shilling; using ¼d even allowed 1/16ths !!], but not 1/10ths ! Of course we still use 12 hours, 60 minutes/seconds etc [and obscure 'degrees'] for that very reason...
                                😲[/off:2hxvcf0c]
                                I can still 'conjure' with the olde fractional feet-and-inches - but 'metric' IS so much easier...

                                TIG

                                1 條回覆 最後回覆 回覆 引用 0
                                • jgbJ 離線
                                  jgb
                                  最後由 編輯

                                  @thomthom said:

                                  @unknownuser said:

                                  when handing out a cultist..

                                  😮 😲 😕

                                  Yeah, I saw that too. You posted faster than I could. 🤣

                                  Handing out cultists.... what a concept.


                                  jgb

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • jeff hammondJ 離線
                                    jeff hammond
                                    最後由 編輯

                                    @thomthom said:

                                    @unknownuser said:

                                    when handing out a cultist..

                                    😮 😲 😕

                                    haha. good catch!

                                    (I think i need a context checker on my computer as opposed to a spell checker 😄 )

                                    dotdotdot

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • TIGT 離線
                                      TIG Moderator
                                      最後由 編輯

                                      At least you weren't handing out a cutlass [pirate theme...]

                                      TIG

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • jeff hammondJ 離線
                                        jeff hammond
                                        最後由 編輯

                                        .

                                        ok, so here's a real world scenario showing why the offset tool w/ arcs is a no go… inferencing doesn't work because if i inference for the arc, everything else goes sour & viceversa..

                                        wall_offset_error_.skp

                                        the attached .skp shows me trying to draw this wall with the offset tool.

                                        …and that's a basic slice of a real world drawing.. this perimeter wall would actually be a lot bigger and possibly more complex in a full drawing.. the whole process has to be done manually where as if the offset tool worked properly, it'd be a big timesaver..

                                        EDIT ugh.. that uploaded version of my skp didn't have any of my notes on there.. ?? i'll sort it out soon..

                                        EDIT #2 -- ok.. fixed 😄

                                        dotdotdot

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • jeff hammondJ 離線
                                          jeff hammond
                                          最後由 編輯

                                          @tig said:

                                          I can still 'conjure' with the olde fractional feet-and-inches - but 'metric' IS so much easier...

                                          my daughter is learning length & volume in school right now..
                                          her homework the past two weeks has been all metric stuff.. (you know.. how to move a decimal point around 😄 )

                                          i just wish they were teaching her metric as 'the way things are' as opposed to 'here, you might see this stuff occasionally'.

                                          dotdotdot

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • Rich O BrienR 線上
                                            Rich O Brien Moderator
                                            最後由 編輯

                                            That's a very good example Jeff 👍

                                            Download the free D'oh Book for SketchUp 📖

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 25
                                            • 26
                                            • 5 / 26
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement