Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

.sdw 3d files

Featured Replies

  • Author
  • Localization

sd3tree, posted Thu Jul 13, 2017 9:49 am (24521)


example data:
https://mega.nz/#!MoxiHZQI!YJuJJqzkIWiN ... 1XxSrdDsKA
vertex/vertices data starts at 0xa0 ,
vertex/vertices count is 709,
vertex/vertices dataformat is short i think

So on this moment i only have a 3d point cloud

Can someone tell me how to find the faces ?

there are some strings like "VERTEX" "NORMALS" "TEXCOORD" ... in this file i am sure the faces need to be some where too
  • Author
  • Localization

id-daemon, posted Fri Jul 14, 2017 2:43 pm (24535)


face indices start somewhere around 0x4200

note that they have separate indices for vertices, normals and texture coordinates
  • Author
  • Localization

sd3tree, posted Fri Jul 14, 2017 3:50 pm (24536)


now i get this
Image
when i start from 0x41ee

how to solve this ?
  • Author
  • Localization

Szkaradek123, posted Sun Jul 16, 2017 5:04 am (24623)


Hi

indices data start from 0x41F0

Code:
   #python code
   #big endian
   #start from 0x41EA
   
   faceCount=g.i(1)[0] #integer from 4 bytes
   g.B(2) #skip 2 bytes
   for m in range(faceCount):
      face=[]
      for n in range(3):
         face.append(g.H(1)[0]) #indice - get integer from 2 bytes
         g.seek(4,1) #indices for normals , uv - skipped
      mesh.faceList.append(face)
  • Author
  • Localization

Karpati, posted Wed Jul 19, 2017 10:39 am (24807)


Can you tell me which program uses the .sdw model files?
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.