-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.v1.0.0
5423 lines (3121 loc) · 116 KB
/
ChangeLog.v1.0.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ChangeLog
=========
This is the ChangeLog file for the Sc21 module. This file is supposed to
be automatically generated every night. Entries are in reversed chronological
order. Check also out the following ChangeLog files:
See http://www.red-bean.com/~kfogel/cvs2cl.shtml for information about the
cvs2cl script used to generate this file.
============================================================================
2004-09-20 01:40 kyrah
* Resources/framework/Info.plist,
Resources/framework/version.plist, Resources/palette/Info.plist,
Resources/palette/palette.table, Resources/palette/version.plist,
Sc21.xcode/project.pbxproj, packaging/doc/Description.plist,
packaging/doc/Info.plist, packaging/examples/Description.plist,
packaging/examples/Info.plist,
packaging/framework/Description.plist,
packaging/framework/Info.plist, packaging/meta/Description.plist,
packaging/meta/Info.plist, packaging/palette/Description.plist,
packaging/palette/Info.plist, src/SCDefines.h:
Bumped version number to 1.0.0.
2004-09-20 01:22 kyrah
* .cvsignore, examples/.cvsignore,
examples/CustomEventHandling/.cvsignore,
examples/CustomEventHandling/CustomEventHandling.xcode/.cvsignore,
examples/CustomEventHandling/English.lproj/.cvsignore:
Ignore some more temporary files.
2004-09-20 00:56 kyrah
* Resources/palette/English.lproj/Sc21Palette.nib/: classes.nib,
info.nib, keyedobjects.nib:
Reimported public headers.
2004-09-20 00:49 kyrah
* packaging/: doc/Resources/License.rtf, doc/Resources/Welcome.rtf,
examples/Resources/License.rtf, examples/Resources/Welcome.rtf,
framework/Resources/License.rtf, framework/Resources/Welcome.rtf,
meta/Resources/License.rtf, meta/Resources/Welcome.rtf,
palette/Resources/License.rtf, palette/Resources/Welcome.rtf:
Use nicer font.
2004-09-20 00:06 kyrah
* packaging/meta/Resources/Welcome.rtf:
Updated welcome file.
2004-09-19 23:58 kintel
* BUGS.txt:
New item 002: window shadow problem
2004-09-19 23:49 kintel
* examples/Sc21FullscreenViewer/AppController.mm:
Select a nicer fullscreen context to avoid resource issues on older
machines
2004-09-19 22:40 kyrah
* src/Sc21.h:
Include all public header files.
2004-09-19 22:26 kyrah
* src/SCExaminerHandlerInspector.m:
Replaced NSLog by SC21_DEBUG calls.
2004-09-19 22:19 kyrah
* src/SCController.mm:
Removed unused debug output.
2004-09-19 21:45 kintel
* README.txt:
Added note about Xcode compatibility
2004-09-17 23:24 kyrah
* packaging/: doc/Resources/License.rtf,
examples/Resources/License.rtf, framework/Resources/License.rtf,
meta/Resources/License.rtf, palette/Resources/License.rtf:
Updated License.rtf files for installer packages.
2004-09-17 23:04 kyrah
* packaging/: doc/Resources/Welcome.rtf,
examples/Resources/Welcome.rtf, framework/Resources/Welcome.rtf,
meta/Resources/Welcome.rtf, palette/Resources/Welcome.rtf:
Updated Welcome.rtf files for installer packages.
2004-09-17 22:32 kyrah
* src/SCView.mm:
Declare private isInInterfaceBuilder method to kill compiler
warning.
2004-09-17 19:34 kintel
* Resources/framework/Info.plist,
Resources/framework/version.plist, Resources/palette/Info.plist,
Resources/palette/palette.table, Resources/palette/version.plist,
Sc21.xcode/project.pbxproj, packaging/doc/Description.plist,
packaging/doc/Info.plist, packaging/examples/Description.plist,
packaging/examples/Info.plist,
packaging/framework/Description.plist,
packaging/framework/Info.plist, packaging/meta/Description.plist,
packaging/meta/Info.plist, packaging/palette/Description.plist,
packaging/palette/Info.plist, src/SCDefines.h:
Bumped to version 5 = 0.9.2 (aka. Release Candidate 2)
2004-09-17 18:53 kyrah
* examples/CustomEventHandling/AppController.mm:
Bugfix: we have to ask the eventhandler, not the coinhandler, if it
can toggleModes.
2004-09-17 18:48 kyrah
* src/SCSceneGraph.mm:
Very minor reformatting (I find it more readable, but feel free to
revert.)
2004-09-17 18:29 kyrah
* src/SCSceneGraph.mm:
Doc update.
2004-09-17 18:16 kintel
* src/SCSceneGraph.mm:
Bugfix. We must set SELF->scenegraph before posting any
notifications
2004-09-17 18:09 kintel
* src/SCSceneGraph.mm:
Cleanup of setRoot: to resolve memory management bugs and
(hopefully) clarify the code a bit
2004-09-17 18:08 kyrah
* examples/CustomEventHandling/: AppController.h, AppController.mm,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib:
Use pan = middle button and zoom = right button.
Added textbox explaining that you can use command-click to send
event to the scenegraph while examining. (And removed text
displaying the filename - the file is now displayed as window
title.)
2004-09-17 17:54 kyrah
* examples/Sc21FullscreenViewer/English.lproj/MainMenu.nib/:
info.nib, keyedobjects.nib:
Use middle button = pan and right button = zoom.
2004-09-17 17:28 kyrah
* examples/Sc21Viewer/English.lproj/MainMenu.nib/: info.nib,
keyedobjects.nib:
Changed keybindings to be middle button = pan and right button =
zoom
2004-09-17 17:26 kyrah
* examples/Sc21Viewer/English.lproj/MainMenu.nib/: info.nib,
keyedobjects.nib:
examples/Sc21Viewer
2004-09-17 17:18 kyrah
* src/SCSceneGraph.mm:
C++ doesn't like calling methods on NULL pointers... when will I
ever learn.
2004-09-17 17:13 kyrah
* src/SCSceneGraph.mm:
Refcounting quick fix.
2004-09-17 17:04 kyrah
* src/SCSceneGraph.mm:
Doc update.
2004-09-17 16:55 kyrah
* src/SCSceneGraph.mm:
Doc update.
2004-09-17 16:22 kintel
*
examples/Sc21FullscreenViewer/Sc21FullscreenViewer.xcode/project.pb
xproj:
Link against OpenGL.framework since we use CGL directly
2004-09-17 16:06 kintel
* packaging/scripts/copyexamples.sh:
Correctly set permissions when installing
2004-09-17 15:27 kyrah
* examples/CustomEventHandling/AppController.h,
examples/CustomEventHandling/AppController.mm,
examples/CustomEventHandling/English.lproj/MainMenu.nib/classes.nib
, examples/CustomEventHandling/English.lproj/MainMenu.nib/info.nib,
examples/CustomEventHandling/English.lproj/MainMenu.nib/keyedobject
s.nib, src/SCSceneGraph.h, src/SCSceneGraph.mm:
Changed superscenegraph creation scheme yet again:
De-coupled the shouldCreateDefaultSuperSceneGraph and
createSuperSceneGraph: delegate methods. The
shouldCreateDefaultSuperSceneGraph method turns creation of the
*internal* superscenegraph on and off, and has no effect on the
createSuperSceneGraph: method. The createSuperSceneGraph: method is
always called to give the delegate the chance to do its own
superscenegraph addition/processing. Depending on whether an
internal superscenegraph has been added, createSuperSceneGraph:
will be called either with the original root or with the root of
the internal superscenegraph.
This fixes a bug in the CustomEventHandler example, where we just
simply always added a light and camera (which was bogus and led to
problems with files that already contained a camera; we would have
had to copy SCSceneGraph's logic for determining whether or not we
should add a camera, but that sucks, too).
This was probably the longest log message I have ever written.
2004-09-17 15:08 kyrah
* examples/Sc21Viewer/AppController.mm:
SCCouldNotReadSceneNotification renamed to SCReadErrorNotification
2004-09-17 14:07 kyrah
* src/SCSceneGraph.mm:
Remove pointless ranting.
2004-09-17 13:55 kyrah
* src/: SCExterns.m, SCSceneGraph.h, SCSceneGraph.mm:
Renamed SCCouldNotReadSceneNotification to SCReadErrorNotification.
Updated documentation to reflect the fact that a read error does
not necessarily mean a read-file failure.
2004-09-17 13:23 kyrah
* src/SCPanMode.mm:
Fixed crash when trying to pan while no scene is loaded: Check if
SCCamera exists before trying to access SoCamera instance.
2004-09-17 12:57 kyrah
* src/SCExaminerHandler.mm:
Fixed recently introduced bug: When mouse button emulation was on,
the actual right or middle clicks were ignored.
2004-09-17 12:40 kyrah
* examples/CustomEventHandling/AppController.mm:
Killed compiler warning.
2004-09-17 11:30 kintel
* examples/: README.txt, Models/README.txt:
Minor updates
2004-09-17 11:29 kintel
* packaging/meta/Info.plist:
Deselect CoinTools by default
2004-09-17 11:11 kyrah
* packaging/SC21-README.txt:
Update.
2004-09-17 10:50 kyrah
* LICENSE, LICENSE.txt:
Renamed LICENSE to LICENSE.txt for double-click-ability.
2004-09-17 10:49 kyrah
* THANKS:
Renamed THANKS to THANKS.txt for double-click-ability.
2004-09-17 10:45 kyrah
* THANKS.txt:
Renamed THANKS to THANKS.txt for double-click-ability.
2004-09-17 10:43 kyrah
* README, README.txt:
Renamed README to README.txt. Update.
2004-09-17 10:13 kyrah
* BUGS.txt:
Added summary of offscreen rendering issues.
2004-09-17 09:55 kyrah
* src/: SCCoinHandler.h, SCEventHandler.mm, SCExaminerHandler.h,
SCOpenGLView.h, SCView.h:
Doc fixes: Always show full inheritance hierarchy and protocol
conformance.
2004-09-17 09:39 kyrah
* src/SCDebug.h:
Doc fix.
2004-09-17 09:39 kyrah
* doc/index.html:
Flag introduction as being non-local link
2004-09-17 00:56 kyrah
* src/SCExaminerHandler.mm:
Removed debugging output.
2004-09-17 00:27 kintel
* packaging/meta/Info.plist:
Added missing Sc21 doc.pkg
2004-09-16 23:59 kintel
* packaging/scripts/copyexamples.sh:
Removed old source files
2004-09-16 23:51 kyrah
* src/SCViewP.h:
Added private header file for SCView Cheshire pussycat.
2004-09-16 23:46 kyrah
* Sc21.xcode/project.pbxproj:
Added private header file for SCView. Move NSTimer extensions into
own files.
2004-09-16 23:44 kyrah
* src/: SCController.h, SCController.mm, SCCursors.m, SCDebug.h,
SCDebug.mm, SCEventHandler.h, SCEventHandler.mm, SCEventHandlerP.h,
SCExaminerHandler.h, SCExaminerHandler.mm, SCExaminerHandlerP.h,
SCSceneGraph.h, SCUtil.h, SCView.h, SCView.mm:
Removed unnecessary header includes. Cosmetics.
2004-09-16 23:14 kintel
* Resources/framework/Info.plist, Resources/palette/Info.plist,
Resources/palette/palette.table, packaging/doc/Description.plist,
packaging/doc/Info.plist, packaging/examples/Description.plist,
packaging/examples/Info.plist,
packaging/framework/Description.plist,
packaging/framework/Info.plist, packaging/meta/Description.plist,
packaging/meta/Info.plist, packaging/palette/Description.plist,
packaging/palette/Info.plist, src/SCDefines.h:
Release Candidate: Bumped version to 0.9.1
2004-09-16 23:14 kintel
* Sc21.xcode/project.pbxproj:
Release Candidate: Bumped version to 4 and removed obsolete version
settings
2004-09-16 23:08 kintel
* src/: SCExaminerHandler.mm, SCExaminerHandlerInspector.m:
Killed warning
2004-09-16 23:06 kintel
* Resources/: framework/version.plist, palette/version.plist:
version files for the installer
2004-09-16 22:42 kyrah
* src/: SCCamera.h, SCCamera.mm, SCCameraP.h, SCCoinHandler.mm,
SCCoinHandlerP.h, SCController.h, SCController.mm, SCControllerP.h,
SCExaminerHandlerInspector.h, SCExaminerHandlerInspector.m,
SCSceneGraph.h, SCSceneGraph.mm:
Removed unnecessary includes. Cosmetics.
2004-09-16 22:33 kyrah
* src/: SCController.mm, SCTimer.h, SCTimer.m:
Put NSTimer extensions into separate source files.
2004-09-16 22:17 kyrah
* Sc21.xcode/project.pbxproj, src/SCCoinHandler.h,
src/SCCoinHandler.mm:
Added private header file for SCCoinHandler to be consistent.
2004-09-16 21:14 kyrah
* THANKS:
Added Tamer for many a nightsession spent coding together...
2004-09-16 21:09 kyrah
* src/SCExaminerHandler.mm:
Fix ugly bug in logic to determine whether we consider an event
handled by us or not. The bug effectively disabled mouse button
emulation.
Minor reformatting of the code to fit into 80-char terminal. :)
2004-09-16 18:42 kyrah
* examples/README.txt:
Minor update.
2004-09-16 18:41 kyrah
* examples/Viewtiful/: AppController.h, AppController.mm,
MyCoinController.h, MyCoinController.mm, MyDocument.h,
MyDocument.mm, MyWindowController.h, MyWindowController.mm,
English.lproj/MyDocument.nib/classes.nib,
English.lproj/MyDocument.nib/info.nib,
English.lproj/MyDocument.nib/keyedobjects.nib,
Viewtiful.xcode/project.pbxproj:
Update and simplification.
2004-09-16 17:22 kyrah
* examples/Sc21FullscreenViewer/: AppController.h,
AppController.mm, English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib:
Cleanup and doc update.
2004-09-16 16:29 kyrah
* examples/: CustomEventHandling/AppController.h,
Sc21Viewer/AppController.h:
Doc update.
2004-09-16 16:24 kyrah
* examples/NoNibViewer/AppController.h:
Doc update.
2004-09-16 16:21 kintel
*
Resources/palette/English.lproj/SCOpenGLViewInspector.nib/classes.n
ib,
Resources/palette/English.lproj/SCOpenGLViewInspector.nib/info.nib,
Resources/palette/English.lproj/SCOpenGLViewInspector.nib/keyedobje
cts.nib, src/SCOpenGLViewInspector.h, src/SCOpenGLViewInspector.mm:
Removed Panther-only functionality; SCView isHidden/setHidden
2004-09-16 16:00 kyrah
* src/SCCamera.mm:
Don't compile delegate dummy implementation.
2004-09-16 15:57 kyrah
* src/SCSceneGraph.mm:
Don't compile delegate dummy implementation.
2004-09-16 15:48 kyrah
* examples/CustomEventHandling/: AppController.mm,
MyEventHandler.h, MyEventHandler.mm:
Doc update.
2004-09-16 15:16 kyrah
* examples/CustomEventHandling/AppController.mm:
Use path for triggering redraw, so we don't have to send root as
userdata.
2004-09-16 15:05 kyrah
* examples/CustomEventHandling/AppController.mm:
Use DELAYED_BLEND transparency mode.
2004-09-16 15:01 kyrah
* examples/CustomEventHandling/: AppController.h, AppController.mm:
Trigger redraw after selection. Delete renderaction to plug memory
leak. Correct contextID handling.
2004-09-16 14:40 kyrah
* examples/CustomEventHandling/AppController.mm:
Highlight selected object for demonstration.
2004-09-16 14:09 kyrah
* examples/CustomEventHandling/: AppController.h, AppController.mm,
MyEventHandler.mm, English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib:
Update to latest Sc21.
2004-09-16 12:50 kyrah
* examples/Sc21Viewer/: AppController.h,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib:
Removed unnecessary SCView connection (use [NSApp mainWindow]
instead).
2004-09-16 12:50 kyrah
* examples/Sc21Viewer/AppController.mm:
Removed unnecessary SCView connection (use [NSApp mainWindow]
instead).
Added some documentation.
2004-09-16 12:31 kyrah
* examples/Sc21Viewer/AppController.mm:
Removed debug output.
2004-09-15 18:37 kintel
* Sc21.xcode/project.pbxproj:
Turned off debug output for scripts
2004-09-15 18:36 kintel
* packaging/scripts/makesc21pkg.sh:
Removed workaround for PackageMaker's return value bug which was
fixed by Apple in V1.2 (Xcode 1.5)
2004-09-15 17:54 kintel
* Resources/palette/SCFlyHandler.tiff, src/SCFlyHandler.h,
src/SCFlyHandler.mm, src/SCFlyHandlerInspector.h,
src/SCFlyHandlerInspector.m, src/SCFlyMode.h, src/SCFlyMode.mm:
Temporarily moved flymode stuff to SC21-priv/Sc21-dev
2004-09-15 17:48 kintel
* src/: SCExaminerController.h, SCExaminerController.mm:
Removed obsolete files
2004-09-15 15:27 kintel
* packaging/scripts/: makedmg.sh, makesc21dmg.sh:
Removed obsolete files
2004-09-15 14:57 kintel
* test.sh:
Removed obsolete file
2004-09-15 14:53 kintel
* packaging/SC21-README.txt:
Updated compiler/deployment info
2004-09-15 14:49 kintel
* packaging/SC21-README-@[email protected]:
Removed obsolete file
2004-09-15 14:41 kintel
* Sc21.xcode/project.pbxproj:
Removed flyhandler from palette
2004-09-15 14:39 kintel
* src/Sc21.h:
Forgot a few public headers
2004-09-15 14:38 kintel
* Resources/palette/English.lproj/Sc21Palette.nib/: classes.nib,
info.nib, keyedobjects.nib:
Reimported headers to catch recent API changes
2004-09-15 13:49 kintel
* Sc21.xcode/project.pbxproj:
SCCursors.h -> public
2004-09-15 13:13 kintel
* src/Sc21.h:
include all public headers
2004-09-14 14:52 kyrah
* doc/style.css:
Increase font size a bit so the docs are still readable at 4 AM.
2004-09-14 12:03 kintel
* Sc21.xcode/project.pbxproj:
Added MACOSX_DEPLOYMENT_TARGET=10.2 for deployment builds, Build
documentation as part of meta pkg
2004-09-14 12:02 kintel
* examples/:
CustomEventHandling/CustomEventHandling.xcode/project.pbxproj,
NoNibViewer/NoNibViewer.xcode/project.pbxproj,
Sc21FullscreenViewer/Sc21FullscreenViewer.xcode/project.pbxproj,
Sc21Viewer/Sc21Viewer.xcode/project.pbxproj,
Viewtiful/Viewtiful.xcode/project.pbxproj:
Added MACOSX_DEPLOYMENT_TARGET=10.2 for deployment builds
2004-09-14 12:01 kintel
* src/: SCCamera.mm, SCMode.h:
Removed obsoleted FIXMEs
2004-09-14 12:01 kintel
* src/SCSpinMode.mm:
Removed debug code
2004-09-14 12:00 kintel
* src/: SCController.mm, SCView.mm:
Use of setVersion obsoleted
2004-09-10 17:04 kyrah
* src/: SCController.h, SCController.mm:
Doc update.
2004-09-10 16:46 kyrah
* src/SCOpenGLPixelFormat.m:
Doc update.
2004-09-10 16:42 kyrah
* src/SCOpenGLView.m:
Doc update.
2004-09-10 16:29 kyrah
* src/: SCSceneGraph.h, SCSceneGraph.mm:
Doc update.
2004-09-10 16:09 kyrah
* src/SCView.mm:
Doc update.
2004-09-10 15:57 kyrah
* src/SCDrawable.mdoc:
Doc update.
2004-09-10 15:45 kyrah
* src/SCSceneGraph.mm:
Changed delegate precedence rules: If the delegate implements
createSuperSceneGraph:, creation of the internal default
superscenegraph is always off.
2004-09-10 15:24 kyrah
* src/SCCursors.m:
Doc update.
2004-09-10 15:21 kyrah
* src/SCCamera.h:
Use meaningful parameter names (note that these will be picked up
by Autodoc and used in the autogenerated documentation, so if we
want to refer to the arguments in the documentation, it makes sense
to have real words here).
2004-09-10 15:20 kyrah
* src/SCCamera.mm:
Even more doc updates.
2004-09-10 14:55 kyrah
* src/SCCoinHandler.mm:
Doc update.
2004-09-10 14:51 kyrah
* src/: SCCamera.h, SCCamera.mm:
Doc update.
2004-09-10 14:18 kyrah
* src/: SCCamera.h, SCExterns.m:
Removed obsoleted notifications.
2004-09-10 14:03 kyrah
* src/SCCamera.mm:
Removed SCCamera* type system.
Updated API documentation.
2004-09-10 14:02 kyrah
* src/SCCamera.h:
Removed SCCamera* type system.
2004-09-08 18:43 kyrah
* src/SCCamera.mm:
FIXME note about what root node the SoGetBoundingBoxAction should
be applied to.
2004-09-08 17:23 kyrah
* THANKS:
Ehre wem Ehre gebuehrt...
2004-09-08 17:22 kyrah
* Sc21.xcode/project.pbxproj:
Update.
2004-09-08 17:15 kyrah
* doc/index.html:
Added SCCamera delegate.
2004-09-08 17:14 kyrah
* src/: SCCamera.h, SCCamera.mm, SCCameraP.h:
Rewrote how to control automatic update of the near and far
clipping planes. Instead of the autoclip mess, here's how it works
now:
- in the internal calculations, a fixed value is always used
- if the user wants to fine-tune the clipping plane updates,
she can do so via a delegate method, which will be called
with the internally calculated values (similar to SoGui's
autoclip callback)
- the internal calculations can be turned off via
setUpdatesClippingPlanes
- in that case, the delegate method (if present) will
be called with the original values, allowing the user
to do her own calculations instead of ours
I think this is much cleaner and "Cocoa-ish" than the previous
solution, while still giving advanced users all flexibility.
2004-09-08 16:15 kyrah
* examples/Sc21Viewer/AppController.h:
Show how to use notification from SCSceneGraph to report potential
errors when reading Inventor files.
2004-09-08 16:15 kyrah
* examples/Sc21Viewer/AppController.mm:
Ignore the previous commit msg, that was bogus. Meant to be: Show
how to use notification from SCSceneGraph to report potential
errors when reading Inventor files.
Must... have... more... coffee...
2004-09-08 16:12 kyrah
* examples/Sc21Viewer/AppController.mm:
Sc21Viewer/AppController.h
2004-09-08 13:49 kyrah
* src/SCDrawable.mdoc:
Copyright header.
2004-09-08 13:16 kyrah
* src/SCDrawable.mdoc:
Hackaround to make Autodoc generate documentation for protocol
methods.
Note that this is the official way to do this, according to AutoDoc
maintainer Carl E. Lindberg.
2004-09-08 12:51 kyrah
* src/SCSceneGraph.mm:
Compile fix.
2004-09-07 18:03 kyrah
* src/SCSceneGraph.mm:
Set superscenegraph to userscenegraph if no superscenegraph has
been created.
2004-09-07 18:00 kyrah
* src/: SCSceneGraph.mm, SCSceneGraphP.h:
Check for existance of light and camera (and post
SCNoLightFoundInSceneNotification/SCNoCameraFoundInSceneNotificatio
n) after superscenegraph creation.
2004-09-07 17:45 kyrah
* src/SCSceneGraph.mm:
Removed usage of no-longer-existing SCString category.
2004-09-07 17:43 kyrah
* src/: SCString.h, SCString.mm:
Not meant to be public... :\)
2004-09-07 17:34 kyrah
* src/: SCString.h, SCString.mm:
Category on NSString that allows for conversion of SbStrings.
2004-09-07 17:31 kyrah
* src/SCExterns.m:
Changed notification scheme for reporting errors when reading
files:
- If the file cannot be read, an SCCouldNotOpenFileNotification
is posted.
- If SoInput cannot parse the file, an
SCCouldNotReadSceneNotification
is posted which contains the error message posted by SoInput
in the userInfo dicitionary.
2004-09-07 17:29 kyrah
* src/: SCSceneGraph.h, SCSceneGraph.mm:
Changed notification scheme for reporting errors when reading
files:
- If the file cannot be read, an SCCouldNotOpenFileNotification
is posted.
- If SoInput cannot parse the file, an
SCCouldNotReadSceneNotification
is posted which contains the error message posted by SoInput
in the userInfo dicitionary.
Updated API documentation.