cohen sutherland line clipping algorithm | Computer Graphics | Lec-35 | Bhanu priya

Поділитися
Вставка
  • Опубліковано 10 жов 2024

КОМЕНТАРІ • 39

  • @ammar9045
    @ammar9045 Рік тому +6

    Clearly explained. Thanks...

  • @PaAGadirajuSanjayVarma
    @PaAGadirajuSanjayVarma 4 роки тому +7

    Thanks mam for explaining this one

  • @Danslists
    @Danslists 5 років тому +19

    Thanks my love, finally an understandable video

  • @Chandra_M
    @Chandra_M Рік тому +5

    Step3.1 if the result is not 0000 the reject the line no need for clipping what if the line is from 0010 to 0100 case like in example explained earlier the result is not 0000 in this algorithm you told no need for clipping but in example you clipped the line please correct the algorithm.

    • @ebadyo2906
      @ebadyo2906 9 місяців тому +1

      This is the downside of this algorithm. It will divide this line until it logical AND is not 0000 thus rejecting this line.

  • @priyankaraut9940
    @priyankaraut9940 4 роки тому +8

    Maam plz make video for
    Scan line polygon fill algorithm
    Flood fill algorithm 🙏🙏🙏🙏 plzzz maam

  • @harshpandey3500
    @harshpandey3500 3 роки тому +3

    This is good for me thank you mam

  • @amoghchitanand5355
    @amoghchitanand5355 4 роки тому +3

    Fantastic 👍👍

  • @azuolassaulius938
    @azuolassaulius938 9 місяців тому

    Step 3.1 wrong, If the result is 0000 then reject the line (meaning all two points of a line are inside the center area, so no clipping needed)

  • @twilight7138
    @twilight7138 10 місяців тому

    Best

  • @gomma420
    @gomma420 11 місяців тому

    Thank you so much mam💗

  • @tekebafente5524
    @tekebafente5524 4 роки тому +3

    how to calculate p8'to p8 if we are take 0000 and 0100 and opreation =0000,

    • @Demi.003
      @Demi.003 4 роки тому

      @ we don't take p8' and p8
      We should take the intermediate points however p8 & p7' otherwise p7&p8'..., then we have got the intersection point

  • @dsuvlogs2199
    @dsuvlogs2199 8 місяців тому

    Thank you

  • @human-011
    @human-011 3 роки тому +1

    nice explanation

  • @adwoaberries3766
    @adwoaberries3766 Рік тому

    good job

  • @LinkMan889
    @LinkMan889 4 роки тому +1

    Thank you!

  • @balachandanamrutaluri4579
    @balachandanamrutaluri4579 4 роки тому +2

    Mam what is T B R L in the figure Madam ?

  • @kalavakurisrikanth9601
    @kalavakurisrikanth9601 3 роки тому +1

    The easiest going tough...

  • @vithyavijayalakshmi1532
    @vithyavijayalakshmi1532 4 роки тому

    Thank you so much

  • @MrMaharkus
    @MrMaharkus 2 роки тому

    thank you maaam

  • @d2dbr
    @d2dbr 4 роки тому

    thanks for the explanation... but this pen on paper!!!! omfg

  • @shanthi.c539
    @shanthi.c539 2 роки тому +1

    Step 3,4, ennach

  • @mohitrajput4829
    @mohitrajput4829 4 роки тому +1

    Mam exams me pehle example de ya algo likhe phle

  • @ranjankulshreshtha1289
    @ranjankulshreshtha1289 3 роки тому +2

    Your explanation is not complete...
    How to find intersection points.??

  • @monalisutradhar468
    @monalisutradhar468 4 роки тому

    Ty

  • @sunrisedesigns
    @sunrisedesigns 8 місяців тому

    Why is my code only working because of two indians and a reddit post from 2014?

  • @AnujMishra-nl6kc
    @AnujMishra-nl6kc 6 місяців тому

    Khud samch le phle

  • @Muhammad_Younis_Tariq
    @Muhammad_Younis_Tariq Рік тому

    mam no inglisss ,first learn ingliss then bedio making...😑

  • @Mulla_killer
    @Mulla_killer 4 роки тому

    Its wrong, what if a line has its end points at outside 0000 region but passes through 0000 region. This algo will simply reject this line which is wrong.

    • @LinkMan889
      @LinkMan889 4 роки тому +6

      The codes are assigned that in your case, logical AND of the points will always give a 0000 and tho not rejected. You can try it.