-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathhead_pat.txt
2000 lines (2000 loc) · 599 KB
/
head_pat.txt
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
TITL:: Eyewear with rigid lens support
DTYP:: pat
ATYP:: utility
PTNO:: 08661562
ISDT:: 20140304
APNO:: 13465272
APDT:: 20120507
PBNO::
PBDT::
AGAP:: 666
AGPB::
AGAL:: 1446
INVS:: CALILUNG RYAN|JANAVICIUS JASON
APLS:: CALILUNG RYAN|JANAVICIUS JASON
LREP:: KNOBBE MARTENS OLSON & BEAR, LLP
ASSE:: OAKLEY, INC.
EXMR:: OSTRUP CLINTON T|SUTTON ANDREW W
NCLS:: 13
NCLI:: 3
NCLD:: 10
NFIG:: 80
DSCL:: 26810
SUML:: 2714
BKGL:: 545
DDRL:: 2962
DDSL:: 25650
CLFL:: 179
CLIL:: 180
CLDL:: 209
NREF:: 278
NRFA:: 272
NRFX:: 6
IPCC:: A-A-61-F-9-00-F-I
USCC:: 2 12|351 86|| 2452|351 86|351103| 2 9|351106| 2425| 2426-427| 2429|| 2431|| 2438|| 2439|| 2441|| 2442|| 2443|| 2445|| 2446|| 2454|| 2 12||351 44||351103-109|351 83||351 86||351121||351140||351141||351153|| 16228|
SFLD:: 2426-427| 2429| 2431| 2438| 2439| 2441| 2442| 2443| 2445| 2446| 2454| 2 12|351 44|351103-109|351 83|351 86|351121|351140|351141|351153| 16228
RLDX:: CON:13051889:20110318:13465272|PRV:61315752:20100319|PRV:61426222:20101222|XXX:20120218507:20120830
NRLD:: 4
NPRV:: 2
NPCT:: 0
ABST:: Eyewear is provided having a frame that can releasably engage a lens. The frame can have an engagement mechanism that includes an active restraint member and a passive restraint member. The active restraint member can have a first component and a second component that are operatively coupled together such that the first and second components rotate together between open and closed positions. The second component can also be configured to slide relative to the first component to engage a portion the frame when the first and second components are in the closed position to maintain the lens fitted against the frame.
DHXX:: CROSS-REFERENCE TO RELATED APPLICATIONS
DDXX:: This application is a continuation of U.S. application Ser. No. 13/051,889, filed on Mar. 18, 2011, which claims the benefit of U.S. Provisional Application No. 61/315,752, filed Mar. 19, 2010 and U.S. Provisional Application No. 61/426,222, filed Dec. 22, 2010, the entirety of each of which is incorporated herein by reference.
DHBK:: BACKGROUND
DDBK:: 1. Field of the Inventions
DDBK:: The present inventions relate generally to eyewear and more specifically to eyeglass and goggle frames, having improved comfort and fit.
DDBK:: 2. Description of the Related Art
DDBK:: A wide variety of improvements have been made in recent years in the eyewear field, particularly with respect to eyewear intended for use in active sports, including goggles and sunglasses. These improvements have been incorporated into eyewear and goggles having both dual and unitary lens designs. As a result, modern active sport eyewear is functionally superior to its predecessor eyewear in numerous ways, such as by maximizing interception of peripheral light, reducing optical distortion, and increasing the wearer's comfort level.
DDBK:: For example, lens designs for both dual and unitary eyewear and goggle designs can provide full side-to-side range of vision and good lateral eye protection while providing superior optical performance. More particularly, in a unitary lens system, the angle of incidence from the wearer's eye to the posterior lens surface changes as the wearer's line of sight turns in either the vertical or the horizontal planes. This results in disparate refraction between light entering closer to the front of the lens and peripheral light entering at the side portions. To address this source of prismatic distortion, U.S. Pat. No. 4,859,048 discloses tapering the thickness of the lens from the central portion toward the side edge, the entirety of the disclosure of which is incorporated by reference herein.
DDBK:: Further, various improvements have also been made in goggle lens frame technology that allow mounted lenses to retain their superior optical characteristics provided by their as-molded geometry. For example, the "SPLICE" snow goggle manufactured by Oakley, Inc., incorporates a frame design that mitigates bending stresses along the bridge of the goggle in order to allow the lens to retain its as-molded geometry and maximize the comfort for the wearer. Such systems are disclosed in U.S. patent application Ser. No. 12/359,175, titled Controlled Deflection Goggle, filed Jan. 23, 2009, the entire disclosure of which is incorporated herein by reference.
DDBK:: Finally, numerous modifications have been made to eyeglass and goggle products in an effort to make these products more comfortable for the wearer. For example, different materials have been used in the manufacture of frames and lenses in order to decrease the weight and improve the comfort of these products. These technological improvements can be incorporated into any variety of dual or unitary lens designs, whether for eyeglass or goggle products, in order to provide a wearer with a comfortable, optically superior eyewear product.
DDBK:: Further features and advantages of the present invention will become apparent to those of skill in the art in view of the detailed description of preferred embodiments which follows, when considered together with the attached drawings and claims.
DHSM:: SUMMARY
DDSM:: A goggle is a semi-customizable eyewear product that can be adjusted to fit a wearer's head by adjusting a strap of the goggle. Further, an eyeglass can also be customized to the wearer through adjusting the fit and/or components of the eyeglass for achieving a desired function. Goggle and eyeglass applications include skiing, snowboarding, motocross, aquatics, and a variety of industrial safety applications, among others. Typically, goggles offer sealed protection to the eyes and adjacent areas of the wearer's face against particulate matter or water. Generally, the goggle and/or lens conforms closely to the wearer's face and intercepts light, wind, dust, etc. from directly in front of the wearer and peripherally along the sides. A wearer can adjust the elastic strap of the goggle to conform closely to the face of the wearer during use. Various features and structures of eyewear are disclosed herein. Some of these features and structures are disclosed in the context of goggles. For sake of brevity, the embodiments and discussion will not generally be repeated with respect to eyeglasses. However, the discussion of a given feature of a goggle herein is contemplated as being applicable to eyeglasses as well.
DDSM:: A goggle usually comprises an arcuate unitary lens which extends across both of the wearer's right and left eye fields of view. The lens can be supported by a frame, which typically surrounds the lens. The lens and the frame are both configured with a downwardly concave indent or nosepiece opening for receiving the nose. The rear surface of the frame, normally covered with a foam component or other compressible material, is adapted to contact the wearer's face. Further, the elastic strap is connected to the opposing sides or ends of the frame so that the wearer can fit and wear the goggle on their head.
DDSM:: When worn, the surface of the foam component or other compressible material disposed at the rear of the goggle makes contact with the wearer's face. This wearer-contacting surface has a radius of curvature in the horizontal plane that is adapted to conform from side to side of the wearer's face. However, some embodiments reflect the realization that when the goggle is placed on a wearer with a "narrow" head, the tension from the straps extending around the back of the wearer's head can cause the sides of the goggle to bend inwardly toward a center thereof, thereby wrapping the goggle into a tighter radius of curvature to fit the wearer and distorting the optics of the goggle. Further, the central portion of the goggle can become substantially compressed against the wearer's forehead while a gap is formed between the sides of the goggle and the wearer's temples. Other poor fit or discomfort problems can occur when a goggle is placed on a wearer with a "wide" head or when the goggle is worn over a helmet.
DDSM:: Thus, some embodiments reflect the realization that the lens of a goggle can sometimes experience undesirable distortion when the goggle is fitted to a wearer's unique head profile. This distortion can sometimes cause discomfort for the wearer as well as inferior optical performance of the eyewear product. Various embodiments enable the eyewear product to exhibit enhanced structural properties in order to prevent discomfort and to maintain preferred optical characteristics of the eyewear product.
DDSM:: Further, some embodiments reflect the realization that a customizable goggle system can be far more effective and useful to a wearer than prior art goggles because a wearer's needs and preferences may change from time to time. Thus, in some embodiments, the goggle can comprise an interchangeable goggle and goggle system in which a lens support or anterior module can be interchangeably coupled with a faceplate or posterior module. In some embodiments, the goggle and goggle system can also comprise at least one connector that couples the anterior module to the posterior module. The components of such a goggle and system can be interchanged in order to create a goggle having desired optical and physical characteristics. For example, the wearer can interchange one or more components of the goggle in order vary the rake, internal air volume, articulation, lens configuration, fit, comfort, and other such optical and physical characteristics of the goggle.
DDSM:: Further, some of the embodiments reflect the realization that prior art goggles tend to create uneven pressure distribution across a variety of wearers' heads. Thus, in some embodiments, the goggle can be configured such that the posterior module of the goggle can articulate relative to the anterior module in order to self-adjust over a variety of unique facial contours and head sizes in order to provide a customized fit to the wearer. In some embodiments, the goggle can comprise an isostatic mechanism or suspension mechanism in which one or more connectors allow the posterior module to articulate with respect to the anterior module. For example, the posterior module can be coupled to the anterior module using any of a variety of connectors, such as wishbone connectors, straight links, expandable cells, pivotable couplings, rigid couplings, and the like.
DDSM:: Additionally, some of the embodiments reflect the realization that prior art goggles generally caused deflection of the lens when the goggle is fitted onto the head of the wearer. Accordingly, in some embodiments, the goggle can be configured such that the anterior module comprises a generally rigid component or portion such that bending stresses exerted on the anterior module are withstood when the goggle is being worn. Thus, the lens of the goggle can be maintained in its as-molded configuration when in use, thereby preserving the optical quality of the lens. In some embodiments, prismatic shift or other optical distortions are minimized when in use.
DDSM:: Furthermore, some of the embodiments reflect the realization that prior art goggles do not facilitate interchangeability of lenses absent a significant stress or force to remove or replace the lens. Thus, in some embodiments, the goggle can comprise an interchangeable lens mechanism that allows a lens to be interchanged with and retained by the goggle. For example, the anterior module of the goggle can comprise one or more pockets or clips that can operate to retain one or more of the edges or sides of the lens. The lens can be retained by the interchangeable lens mechanism such that the lens "floats" or is secured to the anterior module without being bended from its as-molded configuration. Thus, the optical qualities of the lens can be preserved.
DDSM:: One or more of the features discussed herein can be incorporated into embodiments of the goggles. As such, any variety of combinations of these features can be provided as will be apparent to one of skill in the art.
DDSM:: Moreover, in some embodiments, a goggle is provided that can comprise a lens support or anterior module and a faceplate or posterior module. The lens support can be adapted to support at least one lens in a wearer's field of view. The faceplate can be flexible and adapted to conform to the contours of a wearer's face. In some embodiments, the lens support or anterior module can be interchangeably connectable with the faceplate or posterior module to modify at least one physical characteristic of the goggle.
DDSM:: In some embodiments, the faceplate can be coupled to the lens support such that when the goggle is worn by the wearer, opposing ends of the flexible faceplate move in a direction opposite to a direction in which a central portion of the faceplate moves when a force is exerted on one of the opposing portions and the central portion of the faceplate. Further, in some embodiments, in response to a force, the opposing ends of the flexible faceplate can move away from the opposing ends of the lens support while a central portion of the faceplate moves toward a central portion of the lens support. Further, the side portions of the faceplate can move generally independently of each other.
DDSM:: Some embodiments can comprise a suspension assembly that can comprise one or more suspension members or connectors that interconnect the flexible faceplate with the lens support at respective suspension points. In some embodiments, the at least one connector can be interchangeable with the lens support and the faceplate.
DDSM:: For example, the suspension members can enable pivotable movement of the faceplate relative to the lens support at the respective suspension points to modify a contour of the faceplate relative to the contour of the wearer's face. The suspension members can be substantially incompressible. The suspension members can comprise one of a wishbone connector, a curved or straight link connector, an expandable cell connector, and other such components. One or more suspension members may also be positioned in a manner that allows rolling or a "seesaw" effect as it responds to pressure on the frame. The goggle can optionally comprise at least one elongate link member coupled to the faceplate adjacent to each of the respective suspension points. The link members can be coupled to the respective suspension members and to the faceplate for imparting rotation at a first part of the goggle to a second part of the goggle for moving the opposing ends of the faceplate in an opposite direction of the central portion thereof.
DDSM:: Further, the goggle can be optionally configured such that the suspension members comprise a pair of upper suspension members interconnecting an upper portion of the flexible faceplate with an upper portion of the lens support. The suspension members can also comprise a pair of lower suspension members interconnecting a lower portion of the flexible faceplate with a lower portion of the lens support. In such embodiments, the upper suspension members can be coupled to the faceplate and the lens support at locations generally symmetrically spaced from a center point or center line of the faceplate, such as adjacent to side portions thereof. Further, the lower suspension members can be coupled to the faceplate and the lens support at locations generally symmetrically spaced from a center point or center line of the faceplate, such as adjacent to side portions thereof.
DDSM:: Further in some embodiments, the goggle can optionally comprise at least one elongate link member coupled to the faceplate adjacent to each of the respective suspension points. The link members can be coupled to the respective suspension members and to the faceplate for imparting rotation at a first part of the goggle to a second part of the goggle for moving opposing ends of the faceplate in an opposite direction of the central portion thereof.
DDSM:: In embodiments comprising the suspension assembly, the goggle can optionally be configured with the suspension assembly coupling the flexible faceplate to the lens support such that movement of the central portion of the flexible faceplate toward the central portion of the lens support causes separation of the opposing portions of the faceplate from opposing portions of the lens support when the goggle is worn by the wearer. In such embodiments, the suspension assembly can comprise one or more suspension members.
DDSM:: Moreover, some embodiments of the goggle can be configured to comprise a generally rigid lens support or anterior module. The generally rigid lens support or anterior module can support a lens in the wearer's field of view while preventing substantial bending or optical distortion of the lens.
DDSM:: Additionally, the goggle can optionally comprise an interchangeable lens mechanism that facilitates removal and retention of a lens relative to the lens support or anterior module of the goggle. The interchangeable lens mechanism can comprise one or more pockets and/or clips that can engage with a portion of the lens for retaining the lens relative to the goggle.
DDSM:: In some embodiments, the goggle can comprise a pair of outriggers that each outrigger comprises a pair of fastening portions configured to interconnect the anterior module with the posterior module. The fastening portions can be attachable to the anterior and posterior modules at coupling regions thereof. The anterior and posterior modules of the goggle can be coupled together by the outriggers and without the use of specialized tools, single-use fasteners or permanent fasteners. In some embodiments, the outriggers can function as the primary mode of coupling or attachment means between the anterior and posterior modules, such as between a lens support and a faceplate. However, a secondary mode of coupling or attachment means can be employed, such as snap-fit members, hook and loop members, and/or other types of interference fit or frictional engagement members. These secondary connectors can be used in combination with the outriggers to couple the anterior and posterior modules together. In particular, these secondary connectors can be used as an initial coupling mechanism to hold the anterior and posterior modules together as an assembly while the outriggers are attached or detached from the assembly. Thus, the overall assembly, including the outriggers and other components discussed herein, can enable a wearer to quickly manipulate an interchange any given component of the assembly.
DDSM:: Further, the outriggers can each further comprise a pin member extending from a body thereof. In such an embodiment, the anterior module can comprise a pair of apertures that are configured to receive the pin members of the respective outriggers when the outriggers are coupled to the anterior and posterior modules. The combined interconnections of the pin members and the fastening portions of the outriggers can thus provide a fixed rotational position of each outrigger relative to the anterior module. Additionally, the posterior module can comprise apertures configured to receive the pin member when the outriggers are coupled to the anterior and posterior modules. In some embodiments, the coupling regions of the anterior module comprise a recess. For example, the recess can be configured to receive the fastening portions of the outriggers.
DDSM:: Some embodiments of the goggle can comprise a latch member that is coupled to the anterior module. The latch member can be rotatable between an open position in which a lens can be inserted or removed from the lens support and a closed position in which the lens is secured to the lens support. The goggle can also further comprise a biasing member coupled to the latch member. The biasing member can provide a biasing force tending to urge the latch member toward the closed position. The biasing member can be rotatably coupled to the latch member, and in some embodiments, the biasing member can also be rotatably coupled to the anterior module. Thus, in some embodiments, an outrigger can comprises a pin member extending through corresponding apertures in the biasing member and the latch member, and the pin member can provide an axis of rotation for the biasing member and the latch member.
DDSM:: In accordance with some embodiments, the goggle can comprise at least one port disposed along the periphery of the lens support. The port can provide an airflow passage for introducing air over an interconnecting portion of the goggle for improving ventilation and reducing fogging of the goggle. For example, the port can exhibit Venturi airflow characteristics. In some embodiments, the goggle can comprise a pair of ports disposed at the central portion of the lens support above the lens of the goggle.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: The above-mentioned and other features of the inventions disclosed herein are described below with reference to the drawings of the preferred embodiments. The illustrated embodiments are intended to illustrate, but not to limit the inventions. The drawings contain the following figures:
DDDR:: FIG. 1 is a perspective view of a prior art goggle.
DDDR:: FIG. 2 is a front view of the goggle shown in FIG. 1.
DDDR:: FIG. 3 is a horizontal cross-sectional view taken along the lines 3-3 of FIG. 2.
DDDR:: FIG. 4 is a top view of the goggle of FIG. 1 wherein bending forces F, F are exerted on the goggle.
DDDR:: FIG. 5 is a top view of the goggle of FIG. 1 being worn on a narrow head.
DDDR:: FIG. 6 is a top view of the goggle of FIG. 1 being worn on a wide head.
DDDR:: FIG. 7 is an exploded perspective view of a goggle having interchangeable anterior and posterior components, according to an embodiment.
DDDR:: FIG. 8 is a top view of the goggle shown in FIG. 7.
DDDR:: FIG. 9 is a perspective view of a goggle having interchangeable anterior and posterior components shown in an assembled state, according to an embodiment.
DDDR:: FIG. 10 is a top view of the goggle shown in FIG. 9.
DDDR:: FIG. 11 is a perspective view of another goggle having interchangeable anterior and posterior components shown in an assembled state, according to another embodiment.
DDDR:: FIG. 12 is a top view of the goggle shown in FIG. 11.
DDDR:: FIG. 13 is a top perspective view of a goggle having an isostatic faceplate with flexible connectors, according to an embodiment.
DDDR:: FIG. 14 is a bottom perspective view of the goggle shown in FIG. 13.
DDDR:: FIG. 15 is a top view of the goggle shown in FIG. 13, wherein the faceplate is in an undeflected position.
DDDR:: FIG. 16A is a top view of the goggle shown in FIG. 13, wherein the faceplate is in a narrowed deflected position.
DDDR:: FIG. 16B is a top view of the goggle shown in FIG. 13, wherein the faceplate is in a widened deflected position.
DDDR:: FIG. 17 is a top perspective view of another goggle having an isostatic faceplate with pivotable connectors, according to another embodiment.
DDDR:: FIG. 18 is a bottom perspective view of the goggle shown in FIG. 17.
DDDR:: FIG. 19 is a top view of the goggle shown in FIG. 17, wherein the faceplate is in an undeflected position.
DDDR:: FIG. 20A is a top view of the goggle shown in FIG. 17, wherein the faceplate is in a narrowed deflected position.
DDDR:: FIG. 20B is a top view of the goggle shown in FIG. 17, wherein the faceplate is in a widened deflected position.
DDDR:: FIG. 21A is a partial top view schematic diagram of a partially pivotable straight connector for an isostatic faceplate wherein the connector is pivoted to a first position to accommodate a wide head, according to an embodiment.
DDDR:: FIG. 21B is a partial top view schematic diagram of the connector shown in FIG. 21A wherein the connector is pivoted to a second position to accommodate a narrow head.
DDDR:: FIG. 22A is a partial top view schematic diagram of the connector shown in FIG. 22A wherein the connector is pivoted to a first position to accommodate a large head.
DDDR:: FIG. 22B is a partial top view schematic diagram of a dual pivotable straight connector for an isostatic faceplate wherein the connector is pivoted to a second position to accommodate a small head, according to another embodiment.
DDDR:: FIG. 23A is a partial top view schematic diagram of a wishbone connector for an isostatic faceplate wherein the connector is in an undeflected position, according to an embodiment.
DDDR:: FIG. 23B is a partial top view schematic diagram of the connector shown in FIG. 23A wherein the connector is pivoted to a first position.
DDDR:: FIG. 23C is a partial top view schematic diagram of the connector shown in FIG. 23A wherein the connector is pivoted to a second position.
DDDR:: FIG. 23D is a partial top view schematic diagram of the connector shown in FIG. 23A wherein the connector is pivoted to a third position.
DDDR:: FIG. 23E is a partial top view schematic diagram of the connector shown in FIG. 23A wherein the connector is pivoted to a fourth position.
DDDR:: FIG. 24A is a top view of a wishbone connector according to an embodiment.
DDDR:: FIG. 24B is a top view of a wishbone connector according to another embodiment.
DDDR:: FIG. 25A is a top view of a wishbone connector according to yet another embodiment.
DDDR:: FIG. 25B is a top view of a wishbone connector according to yet another embodiment.
DDDR:: FIG. 26 is a top view of an expandable cell connector according to yet another embodiment.
DDDR:: FIG. 27 is a top view schematic diagram of a pair of wishbone connectors illustrating movement of the connectors, according to an embodiment.
DDDR:: FIG. 28 is a perspective view of a goggle having an interchangeable lens mechanism, according to an embodiment.
DDDR:: FIG. 29 is a front view of the goggle shown in FIG. 28.
DDDR:: FIG. 30 is a perspective view of a lens for use with the goggle shown in FIG. 28, according to an embodiment.
DDDR:: FIG. 31A is a perspective view of the goggle shown in FIG. 28 wherein the lens is being interchanged into the goggle, according to an embodiment.
DDDR:: FIG. 31B is a side perspective view of the goggle shown in FIG. 28 wherein a first side of the lens is inserted into a receptacle of the interchangeable lens mechanism, according to an embodiment.
DDDR:: FIG. 31C is a side perspective view of the goggle shown in FIG. 28 wherein the first side of the lens is inserted into the receptacle of the interchangeable lens mechanism and a second side of the lens is fitted against the goggle.
DDDR:: FIG. 31D is a perspective view of the goggle shown in FIG. 28 illustrating the second side of the lens being fitted against the goggle and a pivotable securing member in a disengaged position, according to an embodiment.
DDDR:: FIG. 31E is a perspective view of the goggle shown in FIG. 28 illustrating the second side of the lens being fitted against the goggle and the pivotable securing member in an engaged position, according to an embodiment.
DDDR:: FIG. 32 is a top cross-sectional view of the goggle shown in FIG. 28 illustrating engagement of the first side of the lens in the receptacle of the interchangeable lens mechanism, according to an embodiment.
DDDR:: FIG. 32A is an enlarged cross-sectional view of a portion of the goggle shown in FIG. 32.
DDDR:: FIG. 32B is another enlarged cross-sectional view of another portion of the goggle shown in FIG. 32.
DDDR:: FIG. 33 is a perspective view of a goggle having an interchangeable lens mechanism and an isostatic faceplate wherein the lens is separated from the goggle, according to another embodiment.
DDDR:: FIG. 34A is a partial perspective view of the goggle shown in FIG. 33 illustrating a second side of the lens is being fitted against the goggle, according to an embodiment.
DDDR:: FIG. 34B is a partial perspective view of the goggle shown in FIG. 33 illustrating first and second securing members in disengaged positions, according to an embodiment.
DDDR:: FIG. 34C is a partial perspective view of the goggle shown in FIG. 33 illustrating the first and second securing members in engaged positions, according to an embodiment.
DDDR:: FIG. 35 is a top view schematic diagram of a rigid anterior frame of a goggle, according to an embodiment.
DDDR:: FIG. 36 is a perspective of a goggle, according to another embodiment.
DDDR:: FIG. 37 is a side perspective view of the goggle shown in FIG. 36, wherein an engagement mechanism of the goggle is in a closed position.
DDDR:: FIG. 38 is a side perspective view of the goggle shown in FIG. 36, wherein the engagement mechanism of the goggle is in an open position.
DDDR:: FIG. 39 is a perspective view of the goggle shown in FIG. 36, wherein the engagement mechanism is in the open position and a lens assembly of the goggle is separated from the goggle.
DDDR:: FIG. 40A is a side view of a biasing mechanism of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 40B is an end view of the biasing mechanism shown in FIG. 40A.
DDDR:: FIG. 40C is a perspective view of the biasing mechanism shown in FIG. 40A.
DDDR:: FIG. 41A is a rear perspective view of a latch mechanism of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 41B is a front perspective view of the latch mechanism shown in FIG. 41A.
DDDR:: FIG. 42 is a perspective view of the lens assembly of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 43 is a cross-sectional side view of the lens assembly shown in FIG. 42.
DDDR:: FIG. 44 is a top view of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 45 is a cross-sectional side view of the goggle taken along section lines 45-45 of FIG. 44.
DDDR:: FIG. 46 is a front perspective view of an isostatic posterior frame component of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 47 is a side perspective view illustrating secondary or initial attachment of the isostatic posterior frame component of FIG. 46 with a frame of the goggle shown in FIG. 36, according to an embodiment.
DDDR:: FIG. 48A is a front perspective view of the outrigger of the goggle shown in FIG. 44, according to an embodiment.
DDDR:: FIG. 48B is a rear perspective view of the outrigger shown in FIG. 48A.
DDDR:: FIG. 49 is a top perspective view of the goggle shown in FIG. 44, wherein an outrigger is shown in a detached position.
DDDR:: FIG. 50 is a side view of the goggle shown in FIG. 44, wherein the outrigger is being attached to the goggle, according to an embodiment.
DDDR:: FIG. 51 is a perspective across-sectional view of the goggle taken along section lines 51-51 of FIG. 44.
DDDR:: FIG. 52 is a perspective view of an eyeglass, according to another embodiment.
DDDR:: FIG. 53 is a perspective view of the eyeglass shown in FIG. 50, wherein an engagement mechanism is in the open position and a lens of the eyeglass is separated from the eyeglass.
DDDR:: FIG. 54 is a side perspective view of the eyeglass shown in FIG. 50, wherein the engagement mechanism of the eyeglass is in an open position.
DDDR:: FIG. 55 is a rear perspective view of the eyeglass shown in FIG. 50, wherein the engagement mechanism of the eyeglass is in an open state and a latch member is in a disengaged position.
DDDR:: FIG. 56 is a rear perspective view of the eyeglass shown in FIG. 50, wherein the engagement mechanism of the eyeglass is in a closed state and the latch member is in the disengaged position.
DDDR:: FIG. 57 is a rear perspective view of the eyeglass shown in FIG. 50, wherein the engagement mechanism of the eyeglass is in the closed state and the latch member is in an engaged position.
DDDR:: FIG. 58 is a top cross sectional view taken along lines 58-58 of FIG. 55, illustrating pivoting clearance of the engagement mechanism and the latch member in the disengaged position.
DHDD:: DETAILED DESCRIPTION
DDDD:: While the present description sets forth specific details of various embodiments, it will be appreciated that the description is illustrative only and should not be construed in any way as limiting. Additionally, although particular embodiments of the present inventions may be disclosed or shown in the context of unitary or dual lens eyewear systems, such embodiments can be used in both unitary and dual lens eyewear systems. Further, various applications of such embodiments and modifications thereto, which may occur to those who are skilled in the art, are also encompassed by the general concepts described herein. Furthermore, although various embodiments are shown in use with goggles, embodiments can also be used with eyeglasses and other forms of eyewear.
DDDD:: Some goggle embodiments are provided that overcome many of the disadvantages of the prior art, such as preferential bending, poor comfort, and optical distortion of the lens. Various embodiments are provided that can improve the overall comfort and fit of the goggle on a wide range of head geometries. Some embodiments are configured such that the goggle can actively self-adjust to the head geometry of a given wearer using an isostatic suspension mechanism. Some embodiments are configured with a rigid lens support such that the goggle can prevent bending of the lens and thereby prevent optical distortion. Further, some embodiments can comprise a lens retention mechanism that enables a lens to be quickly removed and replaced with another given lens. Various mechanisms and features for providing one or more of these advantages can be incorporated into various embodiments of the goggle.
DDDD:: Prior Art Goggle Design and Use
DDDD:: FIGS. 1-5 illustrate a common prior art goggle design and its use. FIG. 1 illustrates a goggle 10 that comprises a goggle frame 12, an elastic strap 14, and a foam component 16 attached to a posterior portion of the goggle frame 12. The goggle frame 12 also comprises an indent or nosepiece 18. In use, the wearer can position the goggle frame 12 onto her face and adjust the elastic strap 14 around the back of her head in order to firmly, but comfortably secure the goggle frame in place. FIG. 5 illustrate a top view of a wearer's head 40 onto which the goggle 10 has been placed.
DDDD:: The foam component 16 is intended to contact the wearer's face and allow the goggle 10 to conform to the surface of the wearer's face. However, gaps frequently form between the foam component 16 and the surface of the wearer's face due to the preferential bending of the goggle 10. Furthermore, certain portions of the foam component 16 can often be highly compressed while other portions are not compressed at all. In this regard, the foam component 16 will fail to properly distribute stresses along the surface of the wearer's face resulting in stress concentrations along the front or side of the wearer's head, such as along the forehead, temples, and cheekbones. Some embodiments reflect the realization that such stress concentrations are created due to the preferential bending of the goggle frame 12 and the poor adaptability of the goggle frame 12 to various head sizes.
DDDD:: FIG. 3 illustrates a cross sectional top view of the goggle 10. As shown, a lens 20 of the goggle 10 is mounted in the goggle frame 12. FIG. 3 illustrates the goggle frame 12 and the lens 20 in an unloaded position. In some embodiments, the goggle frame 12 and the lens 20 are not bent from their as-molded configuration. As such, at least side portions 22, 24 of the lens 20 can be configured to define a common center of curvature A in this example. In the as-molded configuration, a central section 26 of the lens 20 defines a preferred geometry that can provide desirable optical characteristics for the goggle 10. However, these desirable optical characteristics are not maintained when the goggle 10 is worn by the user in a loaded position.
DDDD:: FIG. 4 shows the lens 20 of the goggle 10 in the loaded position. The loaded position is generally assumed when the goggle 10 is positioned on the head of the wearer. As illustrated in FIG. 4, bending forces F, F can be exerted on the sides of the frame 12 and cause bending of the frame 12 and the lens 20. These forces F, F can be caused by the elastic strap 14 during use of the goggle 10 by the wearer.
DDDD:: When the goggle frame 12 and the lens 20 are bended to the loaded position, the goggles 10 generally exhibit preferential bending at a midpoint 28 of the lens 20. Some embodiments reflect the realization that a disadvantage of such preferential bending at the midpoint 28 of the lens 20 creates bending of the frame 12 at the nosepiece 18. As shown in FIG. 2, the nosepiece 18 has an unloaded geometry that defines a given width. Generally, the nosepiece 18 allows the wearer to comfortably position the goggle 10 on the bridge of the wearer's nose. However, preferential bending of the frame 12 will generally cause the width of the nosepiece 18 to decrease. As a result, the wearer's nose may be pinched and create discomfort for the wearer.
DDDD:: Additionally, the preferential bending also causes the centers of curvature of the side portions 22, 24 of the lens 20 to be significantly displaced from the common center of curvature A to the displaced centers of curvature B, C. The central section 26 of the lens 20 is also significantly deformed from its unloaded position. This deformation of the lens 20 substantially worsens the original or as-molded optical characteristics of the lens 20.
DDDD:: For example, the lens 20 can exhibit substantial prismatic shift and other optical distortions that tend to tire the eyes of the wearer and reduce the wearer's ability to accurately perceive the position of objects. These disadvantages may not only make use of the goggle 10 uncomfortable, but can potentially affect the wearer's performance of a given activity. In fast-paced activities, such as skiing, snowboarding, skydiving, motocross and the like, where goggles are commonly used, the disadvantages caused by preferential bending of the lens 20 and the frame 12 can be exacerbated.
DDDD:: FIGS. 5-6 illustrate yet other disadvantages of such a prior art goggle 10. The top view of FIG. 5 shows a goggle 10 fitted onto a narrow head 40, and FIG. 6 shows the goggle 10 fitted onto a wide head 42. When fitted on a narrow head 40, the goggle 10 can bend about a central section thereof, thus resulting in deformation of the lens and various significant disadvantages, such as those noted above with regard to FIG. 3. Further, centralized portions 62 of the foam component 16 can experience greater compression 44 than side portions 60, which may be generally uncompressed as indicated at 46. Because the wearer has a narrow head, a gap may be created between the sides of the wearer's head and side portions 60 of the goggle 10 as the goggle 10 is fitted against the wearer's head. This uneven fit can reduce the air volume within the goggle in the central section, which may reduce the anti-fogging effectiveness of the goggle 10. The uneven fit may also cause uneven pressure and discomfort against the head 40 of the wearer.
DDDD:: With regard to FIG. 6, when fitted on a wide head 42, the goggle may again experience bending of the lens 20 (albeit toward a larger radius of curvature, which still results in optical distortion). Further, due to the preferential bending of the goggle 10, the foam component 16 can often experience excessive compression 48 along side portions 60 of the foam component 16. Additionally, centralized portions 62 of the foam component 16 may actually be separated from the wearer's forehead 64 by a gap 66. Although the gap 66 may be minor, such gapping can be problematic in inclement weather or water-related applications, as may be present in skiing and scuba diving. In such applications, gapping can cause impaired vision. Further, the uneven compression of the foam component 16 can create uneven pressure and discomfort against the head 42 of the wearer. As a result, the wearer can generally experience greater discomfort and fatigue.
DDDD:: Interchangeable Component Goggle Embodiments
DDDD:: Some embodiments reflect the realization that in many situations, the goggle 10 may bend as it is fitted onto a wearer's head, thus resulting in deformation of the lens 20, a poor fit that creates uneven pressure and discomfort across the wearer's head, and/or reduced anti-fogging capabilities. Additionally, some embodiments reflect the realization that the orientation of the goggle 10 with respect to the wearer's line of sight may be difficult to precisely adjust. Thus, the wearer may be at a disadvantage in performing activities in which vision could be enhanced by precisely adjusting the orientation of the lens (such as the "rake" of the lens).
DDDD:: Accordingly, some embodiments provide a manner for improving the comfort, fit, optical quality, anti-fogging, and/or customization and interchangeability of components of a goggle. Some embodiments can provide a goggle that includes an anterior module or lens support that can be interchanged with a posterior module. For example, one or more anterior modules (or lens supports) can be interchangeable with one or more posterior modules (or faceplates, which can be fitted against the face of a wearer).
DDDD:: Some embodiments can provide a goggle that includes an isostatic faceplate configured to provide uniform pressure distribution of the face-contacting portion of the goggle against the face of the wearer across a range of head sizes. Such embodiments can mitigate uneven pressure distribution by allowing differential adjustability of a posterior module relative to an anterior module of the goggle.
DDDD:: Some embodiments can also provide a goggle in which the anterior module or lens support is operative to support the lens of the goggle in an undeflected or optically preferred orientation to optimize the optical qualities of the lens. For example, at least a portion of the anterior module or lens support can be substantially rigid to prevent bending of the lens. Further, some embodiments can provide a goggle at having a quick release lens mechanism.
DDDD:: These and other features can be incorporated into a single goggle or used independently of each other to provide for a plurality of distinct goggle embodiments.
DDDD:: Some embodiments of the goggle can comprise separable components that can be interchangeably used in order to customize the goggle to the wearer's preferences. In some embodiments, the goggle can comprise separable components that can be interchangeably used to modify a mechanical and/or cosmetic feature of the goggle.
DDDD:: For example, separable components can be interchangeably used to modify at least one of the "rake" of the lens, the enclosed air volume capacity within the goggle, structural relationship between the anterior module and the posterior module, the articulation between the anterior module and the posterior module, the biasing of the posterior module, the fit of the goggle, and other mechanical and/or cosmetic features.
DDDD:: FIGS. 7-12 show an embodiment of a goggle 100. The goggle 100 can comprise a lens support or anterior module 102, a posterior module 104, and at least one connector 106 extending between the anterior module 102 and the posterior module. The anterior module 102 can support a lens in the wearer's field of view. In some embodiments, the anterior module 102 can be flexible. However, in some embodiments, the anterior module 102 can comprise at least one substantially rigid component and/or frame that supports or maintains the lens in a manner that prevents distortion of the lens under normal use conditions.
DDDD:: FIGS. 7 and 8 illustrate the goggle 100 in a disassembled state, and FIGS. 9-10 illustrate the goggle 100 in an assembled state wherein the connector(s) 106 is coupled with the anterior module 102 and the posterior module 104. FIGS. 11-12 illustrate another embodiment of a goggle in an assembled state wherein a different embodiment of the connector(s) 106 is coupled with an anterior module 102 and a posterior module 104.
DDDD:: The components of the goggle can be interchangeable or replaceable with other components. The posterior module 104 can be configured to be interchangeable and removably attachable to the anterior module 102. One or more anterior modules 102 can be interchanged with a plurality of posterior modules 104 in order to provide a variable and customizable configuration depending on user preferences. Further, a common anterior module 102 can be interchangeable with one of a variety of posterior modules 104. For example, the goggle 100 can be configured such that the wearer can interchange components of the goggle 100 in order to adjust the goggle 100 to modify a fit between the anterior module 102 and the posterior module 104, a configuration of the anterior module 102 and/or the posterior module 104, and/or an interconnection between the anterior module 102 and the posterior module 104.
DDDD:: As noted above, the goggle 100 can comprise the connector(s) 106. The connector(s) 106 can releasably or permanently couple the anterior module 102 with the posterior module 104. The connector(s) 106 can comprise either a movable or fixed component that interconnects the anterior module 102 with the posterior module 104. The connector(s) 106 can extend partially or completely around a perimeter of the anterior module 102 and/or the posterior module 104.
DDDD:: The configuration of the connector(s) 106 can be modified or interchanged to directly influence the fit between the anterior and posterior modules and/or the manner in which the posterior module and/or the anterior module functions in the goggle. The configuration of the connector(s) 106 may be varied while the configuration of the posterior and/or anterior module remains constant. In some embodiments, both the configuration of the connector(s) 106 and the configuration of the posterior and/or anterior module can be varied. The connector(s) 106 can also be configured in a variety of different connection modes and purposes. Thus, in this and other embodiments disclosed and discussed further herein, the movement of the posterior module can be performed substantially independently of movement of the anterior module. Thus, in embodiments, the posterior module may flex and be shaped to the face of the wearer to maximize comfort and fit while the anterior module is maintained in a substantially undeflected state, thus avoiding optical distortion of a lens (whether dual or unitary) supported by the anterior module.
DDDD:: For example, the connector(s) 106 can be configured to provide a rigid, stationary, or fixed relationship between the connector(s) 106 and the anterior and/or posterior modules 102, 104. In such embodiments, the connector(s) 106 can establish a spacing, position, or orientation of the posterior module 104 relative to the anterior module 102. Further, the connector(s) 106 can be interchanged to modify the spacing, position, or orientational relationship between the anterior and posterior modules 102, 104.
DDDD:: Further, in some embodiments, the connector(s) 106 can also be configured to provide a flexible, movable, rotatable, translatable, or pivotable relationship between the connector(s) 106 and the anterior and/or posterior modules 102, 104. For example, the connector(s) 106 can be coupled to the anterior module 102 and to the posterior module 104 in a manner that allows the connector(s) 106 to move or rotate relative to at least one of the anterior module 102 and the posterior module 104. In this manner, the connector(s) 106 can enable the posterior module 104 to flex, move, rotate, translate, or pivot relative to at least one of the anterior module 102. In this manner, the goggle 100 can provide an independent suspension or isostatic mechanism that can equalize or evenly distribute the pressure of the goggle along and against the areas at which the goggle contacts the face of the wearer. The independent suspension or isostatic mechanism can provide differential adjustability of the posterior module relative to the anterior module in order to equalize pressure distribution exerted by the posterior module against the head of the wearer.
DDDD:: Further, in some embodiments, the connector(s) 106 can be interchangeable with the goggle 100 in order to provide a different connection mode and/or a customizable configuration depending on wearer preferences. For example, different embodiments of the at least one connector(s) 106 can be interchanged with the goggle (such as shown in the embodiments shown in FIGS. 9-12).
DDDD:: The connector(s) 106 can be formed separately from the anterior and posterior modules 102, 104. The connector(s) 106 can be removable from the goggle and interchangeable in order to allow the wearer to adjust a given characteristic of the goggle. Further, the connector(s) 106 can be coupled to one of the posterior module 104 and anterior module 102 in a manner that allows relative movement between the connector(s) 106 and at least one of the posterior module 104 and the anterior module 102. In some embodiments, the ends of the connector(s) 106 can be attached to the anterior and/or posterior modules 102, 104 by means of thermal bonding, adhesive bonding, mechanical engagement, and/or other coupling methods known in the art. Various embodiments are shown in FIGS. 11-23E, which will be discussed further below.
DDDD:: However, in some embodiments, the connector(s) 106 can also be monolithically formed with either of the anterior or posterior modules 102, 104.
DDDD:: The connector(s) 106 can also comprise one or more subcomponents, for example, that can articulate with respect to each other to provide an articulating connector(s) 106. Further, the connector(s) 106 can be formed from various types of materials, for example, to provide rigidity, flexibility, compressibility, or other desirable mechanical or material characteristics. Thus, the connector(s) 106 can comprise pivotable links, rigid links, flexible bodies, leaf springs, coil springs, rigid bodies, compressible bodies, rod-shaped bodies, wishbone-shaped bodies, diamond-shaped bodies, gaskets, and/or expandable cells.
DDDD:: In some embodiments, the goggle 100 can comprise a single connector 106. For example, a single connector 106 can be in the form of a gasket, pad, or other unitary structure that extends about the periphery of the anterior and posterior modules 102, 104 and interconnects the anterior and posterior modules 102, 104. Further, in some embodiments, the goggle can comprise multiple connectors 106.
DDDD:: As shown in FIGS. 7-10, in some embodiments, the connector(s) 106 can interconnect with respective anterior and posterior connection points 108, 110 located on the respective ones of the anterior and posterior modules 102, 104. The anterior and posterior connection points 108, 110 can provide a rigid, stationary, or fixed relationship between the connector(s) 106 and the anterior and/or posterior modules 102, 104 and/or a movable, rotatable, translatable, or pivotable relationship between the connector(s) 106 and the anterior and/or posterior modules 102, 104.
DDDD:: The anterior and posterior connection points 108, 110 can be formed in a variety of configurations. For example, in the illustrated embodiment of FIGS. 7-10, the anterior and posterior connection points 108, 110 can comprise a complementary surface structure such as a recess or socket that is configured to engage a corresponding surface structure on the connector(s) 106. Further, in some embodiments, the anterior and posterior connection points 108, 110 can comprise protrusions that extend rearwardly and anteriorly, respectively, which can be configured to engage with the connector(s) 106. Nevertheless, any of the anterior connection points and/or the posterior connection points can comprise a protrusion, recess, or socket for coupling with the connector(s).
DDDD:: In some embodiments, the configuration of the anterior and posterior connection points 108, 110 can be modified to directly influence the manner in which the connector(s), the posterior module, and/or the anterior module function in the goggle. In some embodiments, the configuration of the anterior and posterior connection points 108, 110 may be the only variable while the configuration of the posterior and/or anterior module remains constant. In some embodiments, both the configuration of the posterior and/or anterior connectors and the configuration of the posterior and/or anterior module can be varied.
DDDD:: Referring to FIG. 8, the faceplate or posterior module 104 of the goggle 100 can extend between a first lateral edge 105 and a second lateral edge 107. The direct line distance, in the nature of a secant to the curvature of the faceplate, will, in a properly fitting goggle, correspond to the width of the wearer's face at the point of contact between lateral edges 105 and 107, and the wearer's head. That secant length in an unstressed goggle will typically be within the range of between at least about 4 inches and/or less than or equal to about 7 inches. Often, the range can be between at least about 51/2 and/or less than or equal to at least about 61/2 inches. In accordance with some embodiments, the secant distance between lateral edges 105 and 107 may be varied by at least about 0.5 inches, and generally between at least about 1 inch and/or less than or equal to about 2 inches, without changing the curvature of the lens.
DDDD:: As discussed below, embodiments of a goggle system can be provided in which at least one of the anterior module 102, the posterior module 104, and/or the connector(s) 106 can be selectively interchangeable by the wearer to customize at least one of the characteristics of the goggle.
DDDD:: In some embodiments, the goggle system can comprise a plurality of components, connectors, anterior modules, and/or posterior modules having different geometric characteristics that can induce a desired "rake" in the goggle. For example, the goggle system can comprise a plurality of posterior modules 104 having different geometric characteristics that induce a desired "rake" in the goggle. The "rake" of the goggle generally refers to the orientation of the lens relative to a vertical line. An adjustment in the rake of the goggle can allow the wearer to adjust an optical centerline of the lens such that the optical centerline is displaced away from a normal straight-ahead line of sight toward an activity-specific line of sight of the wearer.
DDDD:: For example, some embodiments can allow the rake of the goggle to be customized for activities in which the wearer frequently gazes downwardly relative to the straight-ahead line of sight (to view the path immediately in front of the wearer) or upwardly relative to the wearer's straight-ahead line of sight. By adjusting the optical centerline to correspond more closely to the activity-specific line of sight, the wearer can minimize image shift or prismatic distortion that occurs when the wearer's gaze (i.e. the activity-specific line of sight) passes across the lens. This can be advantageous for sports that require quick reaction times and frequent monitoring of the terrain in front of the wearer, such as downhill skiing, snowboarding, motocross, and the like.
DDDD:: The rake of the goggle can be adjusted such that the optical centerline of the lens is approximately parallel with the activity-specific line of sight. Further, the rake of the goggle can be adjusted such that the optical centerline of the lens is approximately coaxial with the activity-specific line of sight.
DDDD:: Accordingly, in some embodiments, a posterior module can attach with an anterior module and position the lens from the wearer's head at a different vortex distance than that of another posterior module. In particular, different posterior modules can be interchanged to allow the wearer to induce a different rake in the goggle depending on which posterior module is used. Further, different connectors or anterior modules can also be interchanged to allow the wearer to induce a different rake or to otherwise affect the geometry or spacing of the goggle relative to the wearer's face. The difference in spacing or position can be created due to geometric properties of at least one of the posterior module, the anterior module, and/or connectors between the posterior module and the anterior module.
DDDD:: Some embodiments of the goggle system can comprise a plurality of components, connectors, anterior modules, and/or posterior modules that each result in different air volumes within the goggle in order to adjust the anti-fogging capabilities of the goggle. As will be appreciated, the larger the volume of air within the goggle, the lower the likelihood of fogging of the lens of the goggle under a given set of conditions.
DDDD:: For example, depending on the activity, a wearer may remove and replace a given posterior module with another posterior module that increases or decreases the volume of air trapped within the goggle between the lens and the wearer's face. In some embodiments, the connectors, anterior modules, and/or posterior modules can be configured to adjust the space between the anterior module and the wearer's face, such as by varying thickness of padding, thickness of the body of the posterior module, and/or varying the length and/or size of connector(s) used between the posterior module and the anterior module.
DDDD:: Further, the goggle system can comprise a plurality of different components, connectors, anterior modules, and/or posterior modules that can allow a wearer to select between various types of materials, material or mechanical properties, design features, and sizes. In some embodiments, the connectors or components can be formed to provide a minimal or low-profile goggle appearance. The connectors or components can be configured to provide a minimal overall goggle thickness.
DDDD:: For example, posterior modules can be provided in small, medium, large, and extra large sizes in order to allow a wearer to obtain a tailored to fit for their goggle. Each has dynamic conformability through a range of head sizes or geometries. In some embodiments, the posterior modules can be configured to provide biasing toward a desired default position, such as being biased inwardly (for narrow head sizes), outwardly (for wide head sizes), toward a center thereof, frustoconically, cylindrically, spherically, or toward a standard position (for average head sizes). Thus, a posterior module can be configured to assume an undeflected, biased position from which the posterior module can be deflected when the goggle it is positioned on the face of the wearer. The undeflected, biased position can be selected to improve the fit and conformance of the posterior module for a given head shape.
DDDD:: Further, the posterior modules can also be selected based on the thickness, width, material, and configuration of padding of the posterior module. Moreover, some embodiments can allow wearers to incorporate electronics, such as audio and telecommunication equipment, such as an MP3 player or cell phone into the goggle. For example, the anterior module, the posterior module, the strap, and/or other components of the goggle can support one or more electronic devices for use by the wearer. Thus, embodiments provide for an interchangeable goggle having superior customization and capabilities.
DDDD:: In addition to the interchangeability of the anterior and posterior modules in order to provide customizable geometries and configurations of the goggle, the connector(s) 106, the posterior connection point(s), and/or the anterior connection point(s) can also be modified to allow adjustment the rake, component size, air volume, and/or other characteristics of the goggle. In some embodiments, the size, shape, and/or configuration of the connector(s) 106, the posterior connection point(s), and/or the anterior connection point(s) can be selected in order to modify characteristics of the goggle, such as those discussed above. In some embodiments, at least one of the connector(s) 106, the posterior connection point(s), and/or the anterior connection point(s) can be interchanged in order to modify the rake, component size, air volume, and/or other characteristics of the goggle.
DDDD:: FIGS. 11-12 illustrate another embodiment of a goggle 140. While the goggle 140 can comprise a lens support or anterior module 102 and a posterior module 104, similar to the goggle 100 discussed above, the goggle 140 shown in FIGS. 11-12 can comprise a different embodiment of the connector(s) discussed above. In particular, the goggle 140 can comprise an arcuate wishbone connector 142. Various embodiments of the wishbone connector 142 are discussed and illustrated herein, for example, in FIGS. 11-27.
DDDD:: In some embodiments, the wishbone connector 142 can be coupled to the anterior module 102 and to the posterior module 104 in a manner that allows the wishbone connector 142 to move, flex or rotate relative to at least one of the anterior module 102 and the posterior module 104. The goggle 140 can provide differential adjustability of the posterior module relative to the anterior module in order to dynamically conform to the wearer's face and tend to equalize pressure distribution exerted by the posterior module against the head of the wearer.
DDDD:: The wishbone connector 142 can be coupled to the anterior module 102 at at least one point and to the posterior module 104 at at least one point. For example, in embodiments such as that illustrated in FIGS. 11-12, the wishbone connector 142 is coupled to the anterior module 102 at a single point and to the posterior module at two points. Such a construction can tend to encourage flexion of the posterior module 104 while the anterior module 102 remains generally undeflected. In such embodiments, the lens supported by the anterior module 102 may therefore be generally undeflected, thus resulting in improved optical performance of the goggle.
DDDD:: The wishbone connector 142 can be movably or rotatably coupled to at least one of the anterior module 102 and the posterior module 104. In order to provide a movable or rotatable relationship between the wishbone connector 142 and at least one of the anterior module 102 and the posterior module 104, wishbone connector 142 can comprise a flexible or pivotable joint formed at one of the connection points of the wishbone connector 142 and the anterior module 102 and/or the posterior module 104.
DDDD:: For example, the wishbone connector 142 can comprise a pivotable connection point 144. In some embodiments, the pivotable connection point 144 can be configured as a hinge joint or rotatable coupling formed between the wishbone connector 142 and the anterior module 102.
DDDD:: Further, the wishbone connector 142 can also comprise a flexible material that is used to create a flexible or pivotable joint. Such an embodiment is illustrated and discussed below with reference to FIGS. 13-16.
DDDD:: In the embodiment illustrated in FIGS. 11-12, the wishbone connector 142 is coupled to the posterior module 104 at first and second posterior connection points 146, 148. In some embodiments, the first and second posterior connection points 146, 148 provide a fixed, rigid, or stationary coupling between the wishbone connector 142 and the posterior module 104. However, the first and second posterior connection points 146, 148 can provide a movable, rotatable, or pivotable coupling between the wishbone connector 142 and the posterior module 104.
DDDD:: The wishbone connector 142 can be configured to impart a desired relative movement between the anterior module 102 and the posterior module 104. As discussed and shown further below with respect to FIGS. 21A-27, the size, shape, and coupling mode of the wishbone connector can be varied in order to achieve a desirable articulation of the posterior module 104 relative to the anterior module 102. For example, the movement of the posterior module 104 can be performed substantially independently of movement of the anterior module 102. These considerations and alterations can be made in order to enhance the fit of the goggle, to provide a customized articulating for a specific range of head sizes or activities, and/or to modify the goggle design. In some embodiments, this mechanism can serve to enhance the comfort and fit of the posterior module 104 while preserving the optical qualities of a lens supported by the anterior module 102.
DDDD:: The interchangeable goggle embodiments discussed above with respect to FIGS. 7-12 can incorporate various mechanisms and features discussed in greater detail below, and optionally, in an interchangeable system. Some of these features will now be discussed in greater detail with reference to specific embodiments. While the features discussed herein can be incorporated into one or more of the interchangeable goggle embodiments, the features discussed herein can also be incorporated into one or more goggle embodiments that do not provide an interchangeability of components as discussed above with respect to FIG. 7-12.
DDDD:: Isostatic Faceplate Goggle Embodiments
DDDD:: Many prior art goggle designs share the deficiency of allowing preferential bending at a midpoint of the goggle frame as the goggle is tightened on a wearer's head that is narrower than the unstressed lateral edge to edge dimension of the goggle. Such preferential bending creates an inferior fit, reduced optical quality, and may even cause physical and optical discomfort for the wearer. Therefore, some embodiments reflect the realization that the preferential bending of prior art goggle frames can be reduced and/or eliminated in order to enhance the comfort and performance of a goggle, such as that disclosed in copending U.S. patent application Ser. No. 12/359,175, filed on Jan. 23, 2009, titled Controlled Deflection Goggle, the entirety of which is incorporated herein by reference. In addition, some embodiments disclosed herein reflect the realization that a customized fit can be achieved by allowing portions of the goggle to dynamically articulate with respect to each other and actively adjust to contours of the wearer's face without requiring corresponding bending of the lens.
DDDD:: FIGS. 13-20 illustrate an isostatic faceplate mechanism that can be provided in accordance with some embodiments. As used herein, the term "isostatic faceplate mechanism" or "isostatic faceplate" can refer generally to a mechanism having an anterior module or frame and a posterior module or frame, wherein the posterior module can be adjustable relative to and/or independently of the anterior module to allow the posterior module to have a customized fit against the wearer's head. For example, this relative movement can further allow a desired shape of the anterior module to be maintained during flexing of the posterior module in order to prevent optical distortion of a lens or lenses supported by the anterior module. For example, in some embodiments, connectors between the anterior and posterior modules can allow a posterior module to articulate with respect to the anterior module to permit movement of the posterior module independently of movement of the anterior module. The posterior module can self-adjust to the shape and contour of the wearer's face, while maintaining the optical alignment of the lens contained in the anterior module.
DDDD:: As shown in FIGS. 13-16B, a goggle 200 can comprise a lens support or anterior module 202, a posterior module 204, and at least one connector 206. The isostatic faceplate mechanism of the goggle 200 can be formed using the connector(s) 206 and the anterior and posterior modules 202, 204. The isostatic faceplate mechanism can provide differential adjustability of the posterior module relative to the anterior module in order to equalize pressure distribution exerted by the posterior module against the head of the wearer.
DDDD:: In the embodiment illustrated in FIGS. 13-16B, the connector(s) 206 can comprise a flexible coupling 210 that couples the connector(s) 206 to the anterior module 202. In this manner, the flexible coupling 210 can allow the connector(s) 206 to be coupled to the anterior faceplate 202 while permitting relative movement therebetween. For example, the movement of the posterior module 204 can be performed substantially independently of movement of the anterior module 202. Thus, similar to the pivotable embodiment illustrated in FIGS. 11-12, the connector(s) 206 can enable articulation of the posterior module 204 relative to the anterior module 202. In some embodiments, this mechanism can serve to enhance the comfort and fit of the posterior module 204 while preserving the optical qualities of a lens supported by the anterior module 202.
DDDD:: The flexible coupling 210 can comprise a resilient material. For example, the flexible coupling 210 can be fabricated using a polymer or metal that is compressible, elastic, and/or soft or semi-rigid. In such embodiments, the flexible coupling 210 can extend between the anterior module 202 and a body 212 of the connector(s) 206 and be rigidly attached thereto such that the flexibility of the flexible coupling 210 facilitates relative movement between the connector(s) 206 and the anterior module 202.
DDDD:: The connector(s) 206 can also comprise a pair of posterior ends 214 that can be coupled to the posterior module 204. The posterior ends 214 can be fixedly or movably attached to the posterior module 204 by means of thermal bonding, adhesive bonding, snap fit or other mechanical engagement, and/or other coupling methods known in the art. In some embodiments, the posterior ends 214 of the connector(s) 206 can be formed as widened attachment elements. As illustrated, the widened attachment elements can be configured to provide an increased contact area between the connector(s) 206 and the posterior module 204 to facilitate attachment of the connector(s) 206 to the posterior module 204. As discussed above with respect to the embodiment shown in FIGS. 7-10, the posterior module 204 can comprise connection points, recesses, ridges, and the like to which the posterior ends 214 can be bonded and/or mechanically engaged. The discussion of these features is incorporated here and will not be repeated for the sake of brevity.
DDDD:: Additionally, the embodiment illustrated in FIGS. 13-16B can be configured such that the anterior module 202 comprises a semi-rigid or rigid material and/or construction. The anterior module 202 can support the lens in such a manner as to prevent substantial bending of the lens during use, thus providing optimal optical quality.
DDDD:: FIGS. 15-16B illustrate top views of the goggle 200 in which the posterior module 204 is shown in an undeflected position 250 and deflected positions 252, 254, respectively. FIG. 16A illustrates the deflection of the posterior module 204 from the undeflected position 250 shown in FIG. 15 to the narrowed deflected position 252 in order to accommodate a narrow head size. FIG. 16B illustrates the deflection of the posterior module 204 from the undeflected position 250 shown in FIG. 15 to the widened deflected position 254 in order to accommodate a wide head size.
DDDD:: As shown in FIG. 16A, the posterior module 204 can deflect relative to the anterior module 202 when an anterior force Fa is exerted against a central portion 256 of the posterior module 204. Such an anterior force Fa is directed generally forwardly as a wearer with a narrow head places the goggle 200 on their head. Because the wearer has a narrow head, a gap would otherwise exist between the sides of the wearer's head and side portions of the goggle as the goggle is fitted against the wearer's head. This typical situation is shown and described above in FIG. 5.
DDDD:: However, in the embodiment illustrated in FIG. 16A, side portions 260 of the posterior module 214 can be drawn generally away or separated from the anterior module 202, thus converging onto the sides of the wearer's head which can improve fit and pressure distribution against the wearer's head. The central portion 256 of the posterior module 204 therefore moves in a direction generally toward the anterior module 202 while the side portions 260 of the posterior module 204 move in a direction generally away from the anterior module 202. Due to the articulation of the connectors 206 and the posterior module 204 relative to the anterior module 202, the posterior module 204 can be deflected towards a narrowed deflected position 252 in order to accommodate a narrow head size.
DDDD:: Similarly, FIG. 16B illustrates the goggle 200 wherein the posterior module 204 is deflected toward a widened deflected position 254. In FIG. 16B, the posterior module 204 can deflect relative to the anterior module 202 when lateral forces Fb are exerted against one or both of the side portions 260 of the posterior module 204. Such lateral forces Fb are directed generally outwardly against the posterior module 204 as a wearer with a wide head places the goggle 200 on their head. Because the wearer has a wide head, the side portions would otherwise be significantly compressed against the sides of the wearer's head, and the central portion of the goggle may make little contact or pressure against the central part of the wearer's head. This typical situation is shown and described above in FIG. 6.
DDDD:: However, in the embodiment illustrated in FIG. 16B, side portions 260 of the posterior module 214 can be deflected laterally and cause a central portion 256 of the posterior module 204 to converge toward the central part of the wearer's head in order to better distribute pressure against the wearer's head. The central portion of the posterior module 204 moves in a direction generally away from the anterior module 202 while the side portions 260 of the posterior module 204 move in a direction generally toward the anterior module 202. Due to the articulation of the connectors 206 and the posterior module 204 relative to the anterior module 202, the posterior module 204 can be deflected towards a widened deflected position 258 in order to accommodate a wide head size.
DDDD:: The movement of the posterior module 204 can be at least partially controlled by movement of the connectors 206. In some embodiments, the connectors 206 can be generally rigid bodies. In such embodiments, pivoting or rotation of the connectors 206 can cause one end of the connectors 206 to move generally toward the anterior module 202 while another end of the connectors 206 will move generally away from the anterior module 202. Thus, movement of a portion of the posterior module 204 can immediately cause corresponding movement of another portion of the posterior module 204. For example, a wishbone connector can provide this function. These features and functions can be implemented in any of the isostatic faceplate mechanism embodiments, which can be incorporated into any of the goggle embodiments.
DDDD:: Accordingly, the isostatic faceplate mechanism can provide differential adjustability of the posterior module relative to the anterior module in order to equalize pressure distribution across the wearer's head and to enhance the fit and comfort of the goggle over a wide range of head sizes. In some embodiments, the isostatic faceplate mechanism can cause displacement of portions of the posterior module in response to an applied force.
DDDD:: For example, a portion of the posterior module can adjust in a direction generally toward or away from the anterior module in response to an applied force while another portion of the posterior module adjusts in an opposite direction that is generally away from or towards the anterior module. In some embodiments, if a portion of a first posterior module is urged away from the anterior module due to an applied force (caused for example, while putting the goggles on), at least a second portion of the posterior module can be drawn towards the anterior module (which is reverse the direction of the first portion). In accordance with some embodiments, the deflection of the posterior module to provide conformance of the posterior module along the contours of the face of the wearer can aid in maintaining the orientation of the anterior module and lens of the goggle relative to the face of the wearer in a desired and generally constant orientation.
DDDD:: Further, independent articulation of the posterior module relative to the anterior module can allow the anterior module to support the lens in a generally undeflected orientation, thus enhancing optical performance of the lens. Moreover, in some embodiments that use a rigid anterior module, the flexibility and adjustability of the goggle are not compromised.
DDDD:: FIGS. 17-18 illustrate another embodiment of an isostatic faceplate mechanism incorporated into a goggle 300. The goggle 300 can comprise a lens support or anterior module 302 and a posterior module 304. The posterior module 304 can be coupled to the anterior module by at least one connector 306.
DDDD:: The connector(s) 306 can comprise either a movable or a fixed component that interconnects the anterior module 302 with the posterior module 304. The connector(s) 306 can comprise a compressible, an incompressible, a flexible, and/or inflexible material. The top perspective view of FIG. 17 illustrates that the connector(s) 306 can comprise a wishbone connector, similar to the embodiment illustrated and discussed above in FIGS. 11-12. The discussion of these features will not be repeated here, but is incorporated from the above discussion.
DDDD:: The bottom perspective view of FIG. 18 illustrates that the connector(s) 306 can also comprise an elongate link or arm 310. The arm 310 can be formed from a generally rigid material or a flexible material. Thus, the arm 310 can provide a generally fixed or a variable or dynamic spacing between the anterior module 302 and the posterior module 304. The use of the arm 310 can influence the articulation of the posterior module 304 relative to the anterior module 302. For example, in some embodiments, an upper pair of connectors may provide a dynamic articulation through the use of wishbone connectors while a lower pair of connectors may provide a simple articulation through the use of elongate arms.
DDDD:: FIG. 19 illustrates a top view of the goggle 300 wherein the posterior module 304 is in an undeflected position 320. As such, the posterior module 304 can be biased towards the undeflected position 320. Although FIG. 19 illustrates the posterior module 304 in a widened position, the posterior module 304 can also be biased towards a narrow position.
DDDD:: FIG. 20A illustrates the posterior module 304 in a narrowed deflected position 322, with the undeflected position 320 being shown in dashed lines. Similarly to the embodiment shown and discussed in FIGS. 15-16B, an outwardly directed force Fa can be exerted against the posterior module 304 such that a central portion 330 is urged generally toward the anterior module 302. As the central portion 330 moves closer to the anterior module 302, side portions 332 of the posterior module 304 can be drawn generally away or separated from the anterior module 302. As discussed above with respect to FIGS. 15-16B, the connectors 306 can comprise a generally rigid material that enables opposing ends of the connectors 306 to move in generally opposite directions in response to rotation or pivoting of the connectors 306. In this manner, portions of the posterior module 304 can have interdependency of motion which can facilitate self-customization of the contour of the posterior module 304.
DDDD:: FIG. 20B illustrates the goggle 300 wherein the posterior module 304 is in a widened deflected position 360. As shown, forces Fb exerted on the side portions 332 of the posterior module 304 can urge the side portions 332 generally towards the anterior module 302. Because of this motion, the central portion 330 of the posterior module 304 can be drawn generally away or separated from the anterior module 302. Accordingly, a wearer having a wide head can have a generally customized fit when wearing the goggle. In some embodiments, the posterior module 304 can self-adjust to the contour of the wearer's head.
DDDD:: In some embodiments, the isostatic faceplate mechanism can therefore allow self-adjusting of the posterior module of the goggle independent of movement of the anterior module. The movement of opposing ends or sides of the posterior module can be generally mirrored based on the location of an applied force. However, the connectors of the goggle can move independently of each other such that the articulation of one side of the posterior module is different from the articulation of the other side of the posterior module. Although such differences in articulation may be uncommon, this capability of some embodiments of the isostatic faceplate mechanism highlights the superior adjustability and self-customization that can be provided by the goggle.
DDDD:: Further, as shown in FIG. 18, some embodiments of the goggle can be provided with rigid or semi-rigid connectors. The rigid or semi-rigid connectors can support a portion of the posterior module at a given orientation relative to the anterior module and provide a pivot point for articulation in a lower portion of the posterior module.
DDDD:: The arms 310 shown in the embodiment of FIG. 18 are positioned adjacent to opposing sides of the anterior module 302. The arms 310 can be oriented such that longitudinal axes thereof converge at a point anterior to the face of the wearer and/or anterior to the goggle 300. In some embodiments, the arms 310 can support opposing sides of the posterior module 304 at a predetermined width or position relative to the anterior module 302. As such, when the goggle 300 is donned by a wearer, a lower portion 370 of the posterior module 304 can achieve moderate articulation using the pivot points created by the arms 310. Further, an upper portion 372 of the posterior module 304 can achieve a more aggressive articulation by virtue of the wishbone connectors 308. In such an embodiment, the articulation of the lower portion 370 and the upper portion 372 can provide dynamic adjustability of the posterior module 304.
DDDD:: Additionally, in some embodiments, the arms 310 can comprise a generally resilient or flexible material. The arms 310 can be pretensioned or biased towards a given position. For example, the arms 310 can be biased towards a narrow position such that the arms 310 can be widened when the goggle 300 is worn by a wearer. Biasing of the arms 310 can help in achieving an adequate seal between the posterior module 304 and the wearer's face.
DDDD:: As noted herein, some embodiments can provide for an interchangeable goggle by which a wearer can customize one or more components of the goggle. Some of the features and functions of the components, such as the shape, size, and biasing of the posterior module, the connectors, and the anterior module are a few of the parameters that can be customized through a modular goggle.
DDDD:: For example, a wearer could purchase connector arms were connectors that maintain a desired default orientation of the posterior module relative to the anterior module. Further, a wearer could purchase an anterior module having a desired size or coverage. As discussed further below, various types of connectors can be implemented in embodiments of the goggles.
DDDD:: FIGS. 21A-B illustrates an embodiment of a movable connector 400 that is coupled with a lens support or anterior module 402 and a posterior module 404. The connector 400 comprises a rotatable segment 410 that is coupled to the anterior module 402 that at a rotatable joint 412. The rotatable segment 410 can define a length 414 can be rotated along an arcuate path 420 defined by the length 414. The connector 400 can be rigidly coupled to the posterior module 404 such that the orientation of the segment 410 is fixed relative to the posterior module 404. For example, the connector 400 can be oriented at a perpendicular angle with respect to the posterior module 404.
DDDD:: FIG. 21A illustrates the rotatable segment 410 positioning the posterior module 404 in a widened deflected position 440. FIG. 21B illustrates the rotatable segment 410 positioning the posterior module 404 in a narrowed deflected position 442. Due to the rigid coupling between the rotatable segment 410 and the posterior module 404, a rotatable segment 410 can connect with the posterior module 404 at a single point while providing an effect that is similar to the effect created by a wishbone connector. That is, movement of a central region of the posterior module 404 can trigger a corresponding opposing movement of a side region of the posterior module 404 relative to the anterior module 402.
DDDD:: FIGS. 22A-B illustrate another embodiment of a moveable connector 460. The connector 460 can be coupled with a lens support or anterior module 462 and a posterior module 464. The connector 460 can comprise a rotatable segment 466 that is rotatably coupled to both the anterior module 462 and the posterior module 464.
DDDD:: In contrast to the embodiment illustrated in FIGS. 21A-B, the embodiment of the connector 460 shown in FIGS. 22A-B provides rotatable movement of the rotatable connector 466 relative to both the anterior module 462 and the posterior module 464. Accordingly, the articulation of the posterior module 464 relative to the anterior module 462 can be different than in the embodiment of FIGS. 21A-B. In particular, the embodiment of FIGS. 22A-B can provide a more subtle collapsing of a side region 470. The rotational movement of the rotatable segment 466 relative to the posterior module 462 can allow the posterior module 464 to maintain a generally parallel orientation relative to the anterior module 462 during articulation. Further, the rotatable segment 466 can also permit the posterior module 464 to be compressed more closely toward the anterior module 462 than in the embodiment shown in FIGS. 21A-B, due to the rotational coupling of the rotatable segment 466 and the posterior module 464.
DDDD:: Accordingly, while the posterior module 464 can achieve a widened deflected position 480, as shown in FIG. 22A, the posterior module 462 can all also achieve an intermediate narrowed position 482, as shown in FIG. 22B. The widened deflected position 480 may provide a larger or flatter contour and width for the wearer's head than the widened deflected position 440 illustrated in FIG. 21A. The widened deflected position 480 may be within a good range for a large, generally flat forehead. The intermediate narrowed position 482 can provide a larger width for the wearer's head than the narrowed deflected position 442 illustrated in FIG. 21B. The intermediate narrowed position 482 may be within a good range for a small-sized head.
DDDD:: In some embodiments, the size, configuration, and coupling mode of the connector can be selectively configured in order to achieve a desired articulation between the anterior module and the posterior module. As illustrated at discussed above with respect to FIGS. 21A-22B, some embodiments can be provided with a rotatable coupling at at least one connection point of the connector and one of the anterior module and the posterior module.
DDDD:: Further, one or both of the coupling joints between the connector and the anterior module and the posterior module can be configured to allow the connector to be disengaged therefrom. In this manner, the connector can be selectively replaced with a connector having a desired mechanical attribute. As such, the wearer can customize the goggle to their own specifications.
DDDD:: FIGS. 23A-E illustrate various positions of an embodiment of a connector 500 coupled with a lens support or anterior module 502 and a posterior module 504. As shown, the connector 500 can be rotatably coupled to the anterior module 502. The connector 500 can comprise a wishbone connector 510 that is coupled to a link 512. The link 512 can comprise a short segment that interconnects the wishbone connector 510 with the anterior module 502.
DDDD:: In some embodiments, the link 512 can be rotatably coupled to both the wishbone connector 510 and the anterior module 502. Further, the link 512 can define a length 514. As shown in FIG. 23A, to wishbone connector 510 and the link 512 can separate the posterior module 504 from the anterior module 502 by a separation distance 516. Due to the rotational coupling of the link 512, the connector 500 and the posterior module 504 can rotate with respect to the anterior module 502 generally along a rotational path 518. However, in contrast to the rotatable wishbone connector shown in FIGS. 17-20B, the rotational path 518 represents a range of possible rotational positions that can vary due to the rotational coupling between the link 512 and both the anterior module 502 and the wishbone connector 510. In fact, the range of rotational positions provided by the rotational path 518 increases as the length 514 of the link 512 is increased. Indeed, by varying the length 514 of the link 512 and the separation distance 516, the articulation of the posterior module 504 can be modified to a desirable range.
DDDD:: FIGS. 23A-E illustrate several possible rotational orientations of the connector 500 and the posterior module 504 relative to the anterior module 502. FIG. 23A represents a position of the posterior module 504 in which a medium or intermediate-sized head could be accommodated. FIGS. 23B-C illustrate progressively narrower positions of the posterior module 504 while FIGS. 23D-E illustrate progressively wider positions of the position posterior module 504.
DDDD:: The embodiment illustrated in FIGS. 23A-E provides an example of a connector that can incorporate more than one component in a movable assembly in order to provide a more dynamic articulation of the posterior module relative to the anterior module. In some embodiments, three or more components can be used in the assembly to enhance the articulation of the goggle.
DDDD:: FIGS. 24A-25B illustrate additional embodiments of a connector that can be used in some embodiments of the goggle. FIGS. 24A-B illustrate embodiments of the connector in which geometric constraints have been modified to create a desired articulation of any posterior module relative to any anterior module of the goggle.
DDDD:: For example, FIG. 24A shows a connector 600 that comprises a wishbone-shaped body 602 and a pivotal coupling 604 extending from the body 602. The pivotal coupling 604 can be rotatably coupled to the anterior module of the goggle. Further, first and second ends 606, 608 of the body 602 can be coupled to the posterior module of the goggle. The ends 606, 608 can be rigidly or rotatably coupled to the posterior module. As illustrated, the pivotal coupling 604 can be spaced at a separation distance D1 from a dashed line 610 representing the location of the posterior module. Further, the first end 606 can be spaced from the pivotal coupling 604 at a first radius R1. The second end 608 can be spaced from the pivotal coupling 604 at a second radius R2.
DDDD:: In some embodiments, the first and second radii R1, R2 can be generally equal to each other. In such embodiments, rotational movement of the connector 600 about the pivotal coupling 604 can then create equal displacement of the first and second ends 606, 608, which can result in generally equal and opposite displacement of portions of the posterior module 610 coupled to the respective first and second ends 606, 608 of the connector 600.
DDDD:: However, FIG. 24B illustrates a connector 620 that provides different articulation than the connector 600. The connector 620 comprises a wishbone-shaped body 622, a pivotal coupling 624 extending from the body 622, and first and second ends 626, 628. As illustrated, the pivotal coupling 624 can be spaced at a separation distance D2 from a dashed line 630 representing the location of the posterior module. Further, the first end 626 can be spaced from the pivotal coupling 624 at a third radius R3, and the second end 628 can be spaced from the pivotal coupling 624 at a fourth radius R4.
DDDD:: In some embodiments, the third and fourth radii R3, R4 can be different distances. As illustrated, the third radius R3 can be approximately doubled the fourth radius R4. However, the third and fourth radii R3, R4 can be selectively adjusted in order to achieve a desired articulation, as described below.
DDDD:: In contrast to the embodiment of the connector 600 shown in FIG. 24A, the connector 620 shown in FIG. 24B creates different amounts of displacement at the first and second ends at 626, 628 of the connector 620 in response to rotation about the pivotal coupling 624. Thus, a force for displacement in a given direction against a portion of the posterior module 630 can create a muted, albeit responsive displacement of another portion of the posterior module 630. Embodiments of the goggle can be provided in which the dimensions D1, D2, R1, R2, R3, R4 of the connectors 600, 620 are varied in order to provide a desired articulation of the connectors 600, 620 and the posterior module attached thereto.
DDDD:: FIG. 25A-B illustrate additional embodiments of a connector. FIG. 25A illustrates a connector 640 having a generally wide, short body 642 while FIG. 25B illustrates a connector 650 having a generally narrow, tall body 652. The connectors 640, 650 can be used, for example, in embodiments of a goggle such as that shown above in FIGS. 13-16B, in which anterior portions 644, 654 of the connectors 640, 650 are flexibly or movably coupled to a lens support or anterior module. Similar to the embodiments illustrated in FIGS. 24A-B, the configuration of the connectors 640, 650 can be selectively modified in order to achieve a desired articulation.
DDDD:: In another embodiment of a connector, FIG. 26 illustrates an expandable cell connector 670. The expandable cell connector 670 can comprise at least one leaf spring component 672 having anterior and posterior ends that can be coupled to respective ones of a lens support or anterior module 674 and a posterior module 676. The expandable cell connector 670 can be formed in a diamond shape and be deformed in response to compression between the posterior module 676 and the anterior module 674.
DDDD:: In general, the expandable cell connector comprises at least a first strut 673 which is moveably or rigidly connected to the anterior module 674, and a second strut 675 which is rigidly or moveably connected to the posterior module 676. First strut 673 and second strut 675 may be anterior and posterior sections of a single, arcuate leaf spring. Alternatively, first strut 673 and second strut 675 are separated by a bend or hinge point 677. In the illustrated embodiment, the hinge point 677 comprises a loop of wire, which allows the angle between first strut 673 and second strut 675 to be varied through a wide angular range without exceeding the elastic limit of the material. Suitable materials include any of a wide variety of polymers, and also super elastic metals or spring metals, such as spring steel, Nitinol, Elgiloy and others known in the art.
DDDD:: The expandable cell connector illustrated in FIG. 26 includes a third strut and a fourth strut, separated by a second hinge point to define an enclosed cell. The cell functions as a spring or shock absorber between the two points of contact with the anterior and posterior modules. Two or three or four or five or six or more expandable cell connectors 670 may be provided along either the upper or lower portion of the frame. Spring cells in accordance with the present invention may be provided with four or five or six or more walls, and may comprise a honeycomb configuration in which the struts are replaced by a thin membrane.
DDDD:: In some embodiments, the leaf spring component 672 can be fabricated from a resilient material, such as a plastic or metal that can be elastically deflected. The leaf spring component 672 can comprise a generally elongate body. The leaf spring component 672 can be separately or monolithically formed with one or more additional leaf spring components 672. Thus, the shape and configuration of the expandable cell connector 670 can vary depending on the number and orientation of the individual components of the expandable cell connector 670.
DDDD:: For example, the body of the leaf spring component 672 can comprise one or more curved portions and one or more straight portions. The body of the leaf spring component 672 can have the shape of a bent pin or a spring. Further, the leaf spring component 672 can be fabricated in the shape of a loop in order to facilitate distribution of compressive forces within the body of the leaf spring component 672.
DDDD:: FIG. 27 is a schematic diagram illustrating movement of the connectors and the respective spacing of the connectors. FIG. 27 illustrates first and second connectors 680, 682 that can be pivotably coupled to an anterior module (not shown) and rigidly coupled to a posterior module (not shown). The first and second connectors 680, 682 are shown in solid lines in an undeflected position 684 and dashed lines in a deflected position 686. The first and second connectors 680, 682 can rotate through an angle :ux394;1, as indicated in FIG. 27.
DDDD:: As illustrated, interior connection points P1, P2 of the first and second connectors 680, 682 are spaced apart at a distance L1 when in the undeflected position 684 and at a distance L2 when in the deflected position 686. Although the actual length of the posterior module disposed between the interior connection points P1, P2 of the first and second connectors 680, 682 may be greater than either distance L1, L2, FIG. 27 indicates that the actual length of the posterior module disposed between the interior connection points P1, P2 must be at least equal to the distance L2 in order for the first and second connectors 680, 682 to be deflected towards the deflected position 686. In some embodiments, the actual length of the posterior module disposed between the interior connection points P1, P2 can also be greater than the distance L2 such that the posterior module is not placed in tension in the deflected position 686.
DDDD:: FIG. 27 also indicates that in some embodiments, the movement of a pair of connectors towards a deflected position may actually separate connection points of the connectors while causing other connection points of the connectors to converge. For example, the separation of inner connection points can generally tend to flatten out a central portion of the posterior module while the convergence of the inner connection points may tend to increase the curvature of the central portion of the posterior module.
DDDD:: In some embodiments, the first and second connectors 680, 682 can be configured and mounted relative to the anterior module such that rotation toward the deflected position 686 causes separation of the interior connection points P1, P2. However, the first and second connectors 680, 682 can be configured and mounted relative to the anterior module such that rotation toward the deflected position 686 causes convergence of the interior connection points P1, P2. In either of such embodiments, the articulation of the posterior module can be manipulated in order to target a desired range of head sizes for that embodiment.
DDDD:: Quick Release Lens Goggle Embodiments
DDDD:: Referring now to FIGS. 28-34C, embodiments of an interchangeable lens structure or quick release lens mechanism. As noted previously, any of the features disclosed herein can be individually incorporated into embodiments of the goggles and eyeglasses and incorporated into goggle and eyeglass embodiments in combination with other features. FIGS. 28-34C illustrate embodiments of a goggle wherein the anterior module of the goggle has been modified to comprise an interchangeable lens structure. Embodiments of the anterior module that comprise an interchangeable lens structure can be paired with embodiments of the connector(s) and/or posterior module.
DDDD:: Some embodiments of lens engagement systems are provided in Applicants' copending U.S. patent application Ser. No. 12/648,232, filed on Dec. 28, 2009, titled Eyeglass with Enhanced Ballistic Resistance and U.S. patent application Ser. No. 13/020,747, filed on Feb. 3, 2011, titled Eyewear with Enhanced Ballistic Resistance, the entireties of both of which are incorporated herein by reference. Further, these teachings are believed to apply for goggle and eyeglass technologies. These applications also include other features and aspects of eyewear features, including but not limited to goggle strap technology, the entireties of the related disclosures are also incorporated herein by reference.
DDDD:: In some embodiments, the eyewear can comprise a frame or lens support with at least one engagement section for supporting and engaging a lens. FIGS. 28-29 illustrate an embodiment of a goggle 700 comprising a posterior module 702 and a lens support or anterior module 704 that incorporates an engagement section or interchangeable lens structure 706. The goggle 700 can also comprise a lens 708 that can be releasably retained by the interchangeable lens structure 706.
DDDD:: In some embodiments, the interchangeable lens structure 706 can provide at least one interconnection point or engagement section 710 between the lens 708 and the anterior module 704 where the lens 708 is secured to the anterior module 704. The interchangeable lens structure 706 can comprise a structure that moves relative to the lens 708. The interchangeable lens structure 706 can also comprise one or more stationary structures, which can be used in combination with movable structures to engage the lens 708 to retain the lens 708 in a mounted position.
DDDD:: For example, the interchangeable lens structure 706 of the goggle 700 can comprise at least one engagement section 710. The engagement section(s) 710 can comprise at least one retention socket 720 and/or at least one retention clip 722. Further, the engagement section 710, the retention socket 720, and/or the retention clip 722 can comprise an engagement structure or member such as a depression, recess, receptacle, or socket and/or a protruding portion. In the illustrated embodiment, the retention socket 720 can receive and retain a least a portion of the lens 708 while the retention clip 722 can rotate relative to the lens 708 in order to secure the lens 708 in a mounted position on the goggle 700. As illustrated in FIG. 29, the retention socket 720 can receive a first side 726 of the lens 708, and the retention clip 722 can secure a second side 728 of the lens 708 when the lens 708 is in the mounted position.
DDDD:: FIG. 30 illustrates a perspective view of the lens 708 according to an embodiment. The lens 708 can comprise the first and second ends 726, 728 and a lens periphery 730. In some embodiments, one of the first and second ends 726, 728 of the lens 708 can comprise at least one retention structure 732. The retention structure 732 can comprise one or more apertures, recesses, ridges, and/or protrusions formed along a respective end 726, 728 of the lens 708. In the embodiment illustrated in FIGS. 28-32A, the retention structures 732 comprise oblong apertures formed in the respective ends 726, 728 of the lens 708.
DDDD:: Referring now to FIGS. 31A-32A, the structure of an embodiment of the interchangeable lens structure 706 and its engagement with the lens 708 will be described. FIG. 31A illustrates further features of the retention socket 720 and the retention clip 722. The retention socket 720 can be formed such that the first end 726 of the lens 708 can be inserted into the retention socket 720 and at least partially constrained against anterior motion. Thus, the retention socket 720 can comprise a cavity or space configured to receive at least a portion of the lens 708.
DDDD:: In some embodiments, the retention socket 720 can be formed to comprise at least one engagement member 740 that can be configured to engage with the retention structure 732 of the lens 708. For example, the engagement member 740 of the retention socket 720 can be positioned on an inner, anterior face of the retention socket 720 such that the engagement member 740 can engage the retention structure 732 of the lens 708 from a position anterior to the lens 708. However, the engagement member 740 can also be positioned on an inner posterior face of the retention socket 720 such that the engagement member 740 can engage the retention structure 732 from a position posterior to the lens 708. Moreover, the engagement member 740 can be disposed along an interior lateral side of the retention socket 720 such that a side edge of the first end 726 of the lens 708 can contact and/or engage with the engagement member 740.
DDDD:: Additionally, the retention clip 722 can be configured to engage with the second ends 728 of the lens 708 in order to at least partially constrain the lens 708 against anterior motion. For example, the retention clip 722 can comprise an actuating jaw 744 and an engagement member 746. In some embodiments, the jaw 744 can comprise a retention structure configured to engage with a portion of the lens 708. In the embodiment illustrated in FIG. 31A, the jaw 744 is movable or rotatable with respect to the engagement member 746. Further, the jaw 744 can be configured to translate with respect to the anterior module 704 and/or be removably attachable to the anterior module 704.
DDDD:: The engagement member 746 can be formed along a portion of the engagement section 710 of the anterior module 704. For example, the engagement member 746 can be formed along an anterior face of the anterior module 704, such as to extend from a recess formed in the engagement section 710. In some embodiments, the engagement member 746 can comprise at least one protrusion and/or recess configured to engage with the retention structure 732 of the second end 728 of the lens 708. As discussed further below, when the engagement member 746 of the retention clip 722 is engaged with the retention structure 732 of the lens 708, the jaw 744 can be rotated from a disengaged position to an engaged position to constrain movement of the lens 708 relative to the engagement member 746 of the retention clip 722.
DDDD:: FIG. 31B illustrates a first stage of mounting and securing the lens 708 to the anterior module 704 using the interchangeable lens structure 706. As shown, the first end 726 of the lens 708 is inserted into the retention socket 720 such that the engagement member 740 of the retention socket 720 engages with the retention structure 732 of the first end 726 of the lens 708. When the first end 726 of the lens 708 is in place, the second end 728 of the lens 708 is moved towards the retention clip 722.
DDDD:: FIG. 31C illustrates the lens 708 in a mounted position relative to the anterior module 704 of the goggle 300. In the mounted position, the lens periphery 730 can be generally flush or mate with a periphery 760 of the anterior module 704.
DDDD:: FIG. 31D also illustrates the lens 708 in the mounted position relative to the anterior module 704 prior to actuation of the retention clip 722. As shown, the retention structure 732 of the second end 728 of the lens 708 can be aligned with or initially engaged with the engagement member 746 of the retention clip 722. In the illustrated embodiment, a protrusion of the engagement member 746 has been inserted into an aperture formed in the second end 728 of the lens 708.
DDDD:: Subsequent to alignment of the lens 708 with the retention socket 720 and the retention clip 722, the jaw 744 of the retention clip 722 can be moved from the disengaged position (shown in FIG. 31D) to an engaged position, as shown in FIG. 31E. In the illustrated embodiment, the jaw 744 is rotated to the engaged position, thus constraining the lens 708 from a degree of movement.
DDDD:: FIGS. 32-32B are cross-sectional top views of the anterior module 704 of the goggle 700 shown in FIGS. 28-29, taken along the lines 32-32 of FIG. 29. FIG. 32A illustrates the interconnection of the retention socket 720 with the first end 726 of the lens 708. The engagement member 740 of the retention socket 720 can be positioned into engagement with the retention structure 732 of the first end 726 of the lens 708. As shown, the aperture of the retention structure 732 can receive the protrusion of the engagement member 740 in such a manner that the first end 726 is hooked or engaged within the retention socket 720.
DDDD:: For example, the retention structure 732 can be configured to allow the lens 708 to engage with the retention socket 720 at a first rotational position and then to allow the lens 708 to be rotated about a generally horizontal axis until being positioned in a mounted position with respect to the anterior module 704. Once in the mounted position, the first end 726 of the lens 708 can be engaged with the retention socket 720 to prevent side-to-side or anterior-posterior motion of the lens 708. In this manner, the engagement member 740 can resist an anterior force exerted against the lens 708 and thereby prevent substantial movement of the lens 708 relative to the retention socket 720.
DDDD:: FIG. 32B illustrates the interconnection of the retention clip 722 with the second end 728 of the lens 708. The engagement member 746 of the retention clip 722 can be aligned or engaged with the retention structure 732 of the second end 728 of the lens 708. As shown, the aperture of the retention structure 732 can receive the protrusion of the engagement member 746.
DDDD:: The jaw 744 can be rotated, moved, slid, shifted, or translated in order to secure the second end 728 of the lens 708 to the anterior module 704. In some embodiments, the jaw 744 can pivot about a generally horizontal lateral axis and engage at least portion of the lens 708 and at least a portion of the anterior module 704. For example, the jaw 744 can be formed with a U-shaped body that can engage or enclose at least a portion of the second end 728 of the lens 708 and at least a portion of the anterior module 704. The retention structure 732 and the engagement member 746 can be enclosed between anterior and posterior portions of the jaw 744. Further, the jaw 744 can engage anterior and posterior portions of the anterior module 704 and at least a portion of the lens 708.
DDDD:: Thus, the jaw 744 can be rotated to the engaged position such that relative movement between the retention structure 732 and engagement member 746 is prevented. More specifically, with the jaw 744 in the engaged position, the protrusion of the engagement member 746 is unable to exit the aperture of the retention structure 732. Additionally, due to the engagement of the second end 728 of the lens 708 with the anterior module 704, movement or disengagement the first end 726 of the lens 708 with the anterior module 704 will also be prevented. In this manner, the first end 726 and the second end 728 of the lens 708 can be secured relative to the anterior module 704.
DDDD:: In some embodiments, the jaw 744 of the retention clip 722 can be secured in place when moved to the engaged position. For example, the rotatable coupling of the jaw 744 can comprise a recess and protrusion mechanism in which one of the recess and the protrusion rotate relative to the other until the jaw 744 reaches the engaged position, at which time the recess and the protrusion can engage with each other in the mechanism in order to limit or prevent rotational movement of the jaw 744 absent the presence of a significant rotational force. Accordingly, such a mechanism can prevent accidental and unintentional rotation and subsequent disengagement of the jaw 744. Other such mechanisms, including clips, pins, latches, etc., can be incorporated into the retention clip 722 in order to fix the jaw 744 once in the engaged position.
DDDD:: In accordance with another embodiment, FIGS. 33-34C illustrates a goggle 800 having a posterior module 802, and anterior module 804, and an interchangeable lens structure 806 that can accommodate the removal and replacement of a lens 808. Similar to the embodiment of the goggle 700, the interchangeable lens structure 806 of the goggle 800 can comprise mechanisms that facilitate the interconnection of the anterior module 804 with the lens 808. However, in contrast with the goggle 700, the interchangeable lens structure 806 of the goggle 800 can comprise a pair of retention clips 820.
DDDD:: The retention clips 820 can each comprise an engagement member 830, a jaw 832 and a latch 834. The jaw 832 and a latch 834 can be rotatably mounted to the anterior module 804. However, in some embodiments, the jaw 832 and/or the latch 834 can be configured to translate with respect to the anterior module 804 and/or be subsequently attached to the anterior module 804 after the lens 808 is positioned at a mounted position with respect to the anterior module 804.
DDDD:: Similar to the embodiment of the goggle 700, the lens 808 can comprise the first and second ends 840, 842 that each comprise a respective engagement structure 844. The engagement structure 844 can engage or mate with the engagement member 830 of the retention clip 820. The engagement structure 844 can comprise an aperture, and the engagement member 830 can comprise a protrusion. The jaw 832, similar to the jaw 744, can resist relative motion between the engagement structure 844 and the engagement member 830.
DDDD:: The latch 834 can be configured to rotate from an unsecured position to a secured position in which the latch 834 can engage with the jaw 832 in order to prevent accidental or unintentional rotation of the jaw 832. These structures and features of the lens 808 and the retention clip 820 can be modified as discussed above with respect to the lens 708 and the retention clip 722 of the goggle 700; therefore, the discussion of such modifications and features is incorporated herein and will not be repeated for the sake of brevity.
DDDD:: Referring now to FIGS. 34A-C, the mounting an engagement of the lens 808 with the retention clip 820 of the goggle 800 will now be described. As shown in FIG. 34A, the lens 808 is initially moved toward the anterior module 804 of the goggle 800 with the retention clip 820 in a disengaged position. The first end 840 of the lens 808 is positioned such that the engagement structure 844 is mated with the engagement member 830 of the retention clip 820, as shown in FIG. 34B.
DDDD:: Once the lens 808 is in a mounted position as shown in FIG. 34B, the jaw 832 of the retention clip 820 can be moved toward an engaged position, as shown in FIG. 34C. Additionally, the latch 834 of the retention clip 820 can be moved towards the secured position in order to prevent accidental or unintentional rotation of the jaw 832 from the engaged position.
DDDD:: In some embodiments, the latch 834 can mechanically engage with the jaw 832 such that accidental or unintentional rotation of the jaw 832 is prevented. For example, the latch 834 can comprise one or more protrusions and/or recesses that can engage with one or more respective recesses and/or protrusions of the jaw 832. Further, the latch 834 can be biased toward the secured position by means of a spring or the like such that a substantial rotational force must be exerted up on the jaw 832 in order to move the jaw 832 from the engaged position towards a disengaged position. In such embodiments, the latch 834 can facilitate the secure engagement of the lens 808 with the anterior module 804.
DDDD:: As mentioned herein, the quick release lens mechanism can be used in combination with an eyeglass as well as a goggle. The structure of such embodiments comprises the quick release lens mechanism described above and used in combination with an eyeglass frame and at least one eyeglass lens. The eyeglass can comprise dual lenses or a unitary lens. Further, the eyeglass frame can comprise full or partial orbitals. Accordingly, the above discussion will not be repeated here for brevity, but is incorporated by reference hereto for use in eyeglass embodiments.
DDDD:: Rigid Frame Goggle Embodiments
DDDD:: FIG. 35 illustrates a top view of a lens support or anterior module 900 of a goggle. In some embodiments, the anterior module 900 can be formed as a substantially rigid structure. As a substantially rigid structure, the anterior module 900 can support a lens 902 in a manner that prevents the transfer of bending forces or stresses to the lens 902 to prevent any significant deflection of the lens 902.
DDDD:: The term "substantially rigid structure" can encompass embodiments in which the entire anterior module 900 has a constant flexural strength along the width thereof. The term "substantially rigid structure" can also encompass embodiments in which the anterior module 900 has a variable flexural strength along the length thereof, providing desired rigidity at specific portions thereof.
DDDD:: For example, "substantially rigid structure" can encompass an embodiment in which side sections of the anterior module provide a degree of flexibility while a central section of the anterior module is generally inflexible. In some embodiments, the central section of the anterior module can be generally inflexible along a width that can be greater than or equal to about :ux2153; of the entire width of the anterior module and/or less than or equal to about :ux2158; of the entire width of the anterior module. Further, the central section of the anterior module can be generally inflexible along a width that can be greater than or equal to about 1/2 of the entire width of the anterior module and/or less than or equal to about :ux2154; of the entire width of the anterior module.
DDDD:: Additionally, the term "substantially rigid structure" can also encompass embodiments in which the anterior module is formed from a rigid material, such as a metal or hard plastic, which is generally inflexible under normal flexural stresses of use and handling. However, the term "substantially rigid structure" can also encompass embodiments in which the anterior module is formed from a resilient or elastic material that allows minimal bending, but returns to a default or original configuration when worn.
DDDD:: In some embodiments, the anterior module 900 can have a configuration or contour that matches the configuration or contour of the lens 902 in its as-molded configuration. Thus, the lens 902 can be rigidly supported by the anterior module 900 such that the lens 902 does not deflect from its as-molded configuration, thereby preserving the optical quality of the lens 902.
DDDD:: FIG. 35 illustrates that the anterior module 900 can comprise an interchangeable lens structure 904 disposed at opposing ends of the anterior module 900. In some embodiments, the interchangeable lens structure 904 can be disposed at top and/or bottom portions of the anterior module 900 or along other places thereof. Accordingly, the lens 902 can be replaced and securely retained by the anterior module 900 by virtue of the interchangeable lens structure 904.
DDDD:: Further Embodiments
DDDD:: FIGS. 36-51 illustrate an embodiment of eyewear that can incorporate various features and components discussed herein. The embodiment of the eyewear shown in these figures is illustrated as a goggle, but other forms of eyewear, such as eyeglasses, can also incorporate or omit the features discussed with respect to this embodiment, as well as incorporate or omit other features of other embodiments discussed herein.
DDDD:: Referring now to FIGS. 36-39, an embodiment of a goggle 1000 is provided that can comprise various features and advantages of the aforementioned embodiments, as well as other features discussed further below. For example, the goggle 1000 can comprise an engagement mechanism 1002, an isostatic posterior frame component 1004, a lens or lens assembly 1006, an anti-fog Venturi airflow system 1008, a rigid frame 1010, and a modular frame 1012. These features can be interchangeably incorporated into various embodiments, and the embodiment shown in FIGS. 36-51 is provided for illustrative purposes only.
DDDD:: FIG. 37 is a side view of the goggle 1000 illustrating the engagement mechanism 1002. The engagement mechanism 1002 can comprise a latch member or clip 1020. The latch member 1020 can be movably coupled to an anterior module or frame 1022 of the goggle 1000 in order to facilitate engagement between the goggle 1000 and the lens assembly 1006. The latch member 1020 can move between a closed position 1024 and an open position 1026 (shown in FIG. 38). In some embodiments, the latch member 1020 can be pivotably coupled to the frame 1022. However, the latch member 1020 can also be slidably coupled to the frame 1022.
DDDD:: In some embodiments, the engagement mechanism 1002 can also comprise a biasing component. The biasing component can be configured to urge the latch member 1020 toward the closed position 1024 to secure the lens assembly 1006 relative to the goggle 1000. Further, the biasing component can operate as a bistable mechanism to urge the latch member 1020 toward either the closed position 1024 or the open position 1026.
DDDD:: As shown in FIGS. 36-40C, the biasing component can comprise a deflectable component, such as a link 1030. For example, the biasing component can deflect from an undeflected or at-rest position to a deflected or stressed position. When moved, compressed, or deflected to the stressed or deflected position by a given force, the biasing component can store potential energy that can be exerted to move the engagement mechanism 1002 toward the closed position 1024 or the open position 1026. In the embodiment illustrated in FIGS. 36-40C, the biasing component is shown as the link 1030, which is in the form of an arcuate elongate body. The biasing component can comprise various structures, such as a spring, a band, link, or other structure that can store potential energy during movement, compression, or deflection thereof.
DDDD:: FIGS. 40A-40C illustrate that an embodiment of the link 1030 can comprise the first and second ends 1040, 1042 that can be interconnected with a portion of the goggles 1000 and a portion of the latch member 1020, respectively. The link 1030 can comprise apertures disposed at the first and second ends 1040, 1042 thereof that enable the link 1030 to be interconnected in use.
DDDD:: In the illustrated embodiment, the link 1030 is configured as a monolithic structure. The link 1030 can comprise a deflectable core or body 1044 to enable the link 1030 to provide a biasing force to the latch member 1020. For example, the link 1030 can provide a virtual pivot or living hinge for the latch member 1020. The body 1044 can define a variable profile in order to provide a desired degree of resistance to deflection. For example, the body 1044 can define flattened central section to facilitate bending of the link 1030 and provide a desired degree of resistance to deflection. In some embodiments, central section of the body 1044 can be flattened in a direction generally parallel to a bending axis. Further, the end portions of the body 1044 can be flattened in a direction generally transverse or oblique relative to the bending axis in order to reduce and/or prevent bending at the end portions. The variable profile or tapered dimensions of the link 1030 can allow the body 1044 of the link 1030 to be manufactured from a single material while providing desired strength characteristics. However, in some embodiments, the link 1030 can be configured as a monolithic unit or structure having a generally constant cross-sectional profile along the body 1044 or thereof. In such embodiments, the material forming the link 1030 can be selected to provide desired strength characteristics.
DDDD:: However, in some embodiments, the link 1030 can also be formed from a plurality of materials or separate parts. For example, the first and second ends 1040, 1042 of the link 1030 can be formed from a generally rigid material while the body 1044 of the link 1030 comprises a different material that is generally deflectable in order to allow the link 1030 to provide a desired biasing function.
DDDD:: The link 1030 can be formed from a variety of materials, including plastics, metals, composites, and the like. In some embodiments, the link 1030 can be formed using an injection molding process. Other processes such as overmolding, casting, and the like can be used to form the link 1030, whether as a monolithic structure or an assembly and whether formed from a single material or multiple materials.
DDDD:: Referring again to FIGS. 37-39, the link 1030 can be coupled to the frame 1022 and the latch member 1020 at first and second connection points 1050, 1052. The first connection point 1050 can be located along the frame 1022. For example, the first connection point 1050 can be configured as an aperture extending through the frame 1022. The second connection point 1052 can be located along the latch member 1020. For example, the second connection point 1052 can comprise an aperture extending through an intermediate portion of the latch member 1020. The goggle 1000 can be configured such that the spacing of the first connection point 1050 from the second connection point 1052 varies when the latch member 1020 is pivoted between the closed position 1024, an intermediate open position (not shown), and the open position 1026.
DDDD:: For example, a pivot connection point 1060 between the latch member 1020 and the frame 1022 can be positioned relative to the first and second connection points 1050, 1052 so as to cause separation of the first and second connection points 1050, 1052 as the latch member 1020 pivots relative to the frame 1022. For example, the first and second connection points 1050, 1052 can define a linear path and a first direct, linear distance therebetween when the latch member 1020 is in the closed position 1024. As shown in FIGS. 37-38, the pivot connection point 1060 can be offset or spaced apart from the linear path of the first and second connection points 1050, 1052 when the latch member 1020 is in the closed position 1024. The motion of the second connection point 1052 occurs along an arcuate path defined by the distance (or radius) between the pivot connection point 1060 and the second connection point 1052. Further, during movement of the latch member 1020, although the distance between the first connection point 1050 and the pivot connection point 1060 does not change, the direct, linear distance between the first and second connection points 1050, 1052 will increase as the second connection point 1052 moves along the arcuate path as the latch member 1020 pivots.
DDDD:: In some embodiments, the increase in the direct, linear distance between the first and second connection points 1050, 1052 can result in a stretching or deflection of the link 1030 as the first and second connection points 1050, 1052 move apart. The link 1030 can be configured to resist the stretching or deflection and tend to urge the latch member to the closed and/or open position 1024, 1026 as the link 1030 seeks to return to a non-stressed position. Accordingly, the link 1030 can tend to exert a biasing force that urges the latch member 1020 toward the closed and/or open position 1024, 1026.
DDDD:: FIGS. 37 and 38 illustrate the offset positioning of the pivot connection point 1060 from the linear path defined by the first and second connection points 1050, 1052. An intermediate position (not shown) between the open and closed positions 1024, 1026 could be reached when the pivot connection point 1060 is linearly aligned with the first and second connection points 1050, 1052. In such an intermediate position, the distance between the first and second connection points 1050, 1052 would be maximized, also resulting in a maximum potential energy in the link 1030.
DDDD:: In some embodiments, the spacing or linear distance of the first and second connection points 1050, 1052 can be generally equal to the linear distance between the apertures of the first and second ends 1040, 1042 of the link 1030 when the link 1030 is in the undeflected or at-rest position (i.e., when the latch member 1020 is in the closed position 1024). However, in some embodiments, the spacing or linear distance of the first and second connection points 1050, 1052 can be generally greater than the linear distance between the apertures of the first and second ends 1040, 1042 of the link 1030 when the link 1030 is in the undeflected or at-rest position (i.e., when the latch member 1020 is in the closed position 1024). Thus, the link 1030 can be in a generally stressed or deflected state when the latch member 1020 is in the closed or open positions 1024, 1026. In such embodiments, a closing or opening force can be continually applied by the link 1030 in order to maintain the latch member 1020 securely in the open or closed position 1024, 1026.
DDDD:: As noted above with respect to FIGS. 28-34C, the goggle 1000 can also comprise an interchangeable lens structure in which the lens or lens assembly 1006 comprises at least one retention structure 1070 and the frame 1022 comprises at least one corresponding engagement member 1072. Further, the opposite ends of the lens or lens assembly 1006 and the frame 1022 can be configured to include a retention structure and/or an engagement member to facilitate interconnection of the opposite end of the lens assembly 1006 with the opposite end of the frame 1022.
DDDD:: As similarly discussed above, FIGS. 37-39 illustrate that when the opposite end of the lens assembly 1006 is properly seated against the frame 1022, the retention structure 1070 can be fitted over the engagement member 1072, and the latch member 1020 can be moved down into the closed position 1024 to engage and secure the lens assembly 1006 relative to the frame 1022. The above discussion regarding these features is incorporated herein by reference and the discussion will not be repeated here.
DDDD:: Referring now to FIGS. 41A-B, an embodiment of the latch member 1020 is illustrated. The latch member 1020 can comprise first and second coupling points 1080, 1082. The latch member 1020 can be coupled to the frame 1022 at the first coupling point 1080. Additionally, the latch member 1020 can be coupled with the biasing component or link 1030 at the second coupling point 1082. The latch member 1020 can also comprise a body 1090 having an actuating portion 1092 that can be configured to allow the wearer to grip and adjust the position of the latch member 1020 relative to the frame 1022.
DDDD:: In some embodiments, the body 1090 of the latch member 1020 can also comprise a first flange 1094. The first flange 1094 can overlap the lens assembly 1006 and the engagement member 1072 of the frame 1022 when the latch member 1020 is positioned in the closed position 1024. The body 1090 of the latch member 1020 can also comprise a second flange 1096. The second flange 1096 can be configured to engage a portion of the frame 1022 when the latch member 1020 is in the closed position 1024. Accordingly, the first and second flanges 1094, 1096 can be used to receive at least a portion of the lens assembly 1006 and at least a portion of the frame 1022 by capturing or sandwiching the lens assembly 1006 and the frame 1022 to secure the relative positioning of the lens assembly 1006 and the frame 1022.
DDDD:: Additionally, the body 1090 of the latch member 1020 can comprise a stop mechanism 1098. As shown in FIGS. 37-38, the stop mechanism 1098 can interact with a ledge 1100 formed on the frame 1022 to restrict rotational movement of the latch member 1020. For example, as the latch member 1020 rotates upwardly to the open position 1026, the stop mechanism 1098 can contact the ledge 1100 to limit further rotation of the latch member 1020 relative to the frame 1022. Advantageously, in some embodiments of the latch member 1020, the position of the stop mechanism 1098 can be varied in order to adjust the rotational orientation of the open position 1026.
DDDD:: In order to achieve a desired articulation and closing or opening force of the latch member 1020, the spacing and configuration of the components of the engagement mechanism 1002 can be varied. Further, the latch member 1020 and/or the frame 1022 can comprise a locking structure or component 1099. The locking structure 1099 can interact with the frame 1022 to provide an additional securing force between the latch member 1020 and the frame 1022 when the latch member 1020 is in the closed position 1024. For example, the locking structure 1099 can be formed as a protrusion along an edge or surface of the latch member 1020. Further, an engaging portion 1101 of the frame 1022, such as a ledge, protrusion, or recess, can engage with the locking structure 1099 when the latch member 1020 is in the closed position 1024 to secure the latch member 1020 in the closed position 1024.
DDDD:: Although some embodiments can use a single lens, some embodiments can use a lens assembly comprising two or more components and/or lenses. For example, FIGS. 42-43 illustrate an embodiment of a lens assembly 1006 that can be used in some embodiments. The lens assembly 1006 can comprise an outer lens 1050 and an inner lens 1052. In some embodiments, the outer and inner lenses 1050, 1052 can be spaced apart by a gasket component 1054 to create a gap 1060 between the lenses 1050, 1052. The gasket 1054 can extend about a periphery of the lenses 1050, 1052. Further, the outer lens 1050 can be configured to comprise retention structures 1070, 1071 by which the lens assembly 1006 can be coupled to the goggle. The retention structures 1070, 1071 can be disposed on opposing lateral ends of the lens assembly 1006.
DDDD:: The gasket 1054 can comprise one or more discontinuities to permit airflow into the gap 1060. However, the gasket 1054 can also extend continuously or unbroken about the periphery of the lenses 1050, 1052 such that the gap 1060 forms a sealed or enclosed pocket of air. The gasket 1054 can comprise a breathable or open cell material that allows air passage through the gasket 1054. Further, the gasket 1054 can comprise a non-breathable or closed cell material that tends to prevent air passage therethrough. In some embodiments, the gasket 1054 can comprise breathable and non-breathable portions.
DDDD:: The gap 1060 created between the lenses can facilitate ventilation, anti-fogging, and/or create an insulative effect by trapping a pocket of air between the outer and inner lenses 1050, 1052. For example, an enclosed pocket of air can maintain an intermediate temperature which, in some conditions, can bridge a temperature differential between the air temperature adjacent the wearer's face and the air temperature outside the goggle.
DDDD:: During use, the inner lens 1052 can be compressed against the goggle frame when the lens assembly 1006 is coupled to the goggle. In some embodiments, the inner lens 1052 can form a seal against the goggle frame to maintain a desired air flow or ventilation through the frame, as discussed below.
DDDD:: Referring now to FIGS. 44-45, the goggle 1000 can comprise an anti-fog Venturi airflow system 1008. The airflow system 1008 can comprise one or more ports 1102 disposed along a periphery of the goggle 1000. The port(s) 1102 can be disposed along a central section of the goggle 1000 along an upper portion thereof. The port(s) 1102 can comprise an anterior end 1104 that is open toward the anterior direction of the goggle 1000 and a posterior end 1106 that is open toward a posterior section of the goggle 1000.
DDDD:: In use, air can flow into the anterior end 1104 of the port 1102 and out through the posterior end 1106. The air flow can exhibit the velocity and pressure qualities produced as a result of the Venturi effect. A pressure differential can exist between the outer portions of the goggle and the port(s) 1102. Air can be drawn into the port(s) 1102 and pass over a suspension or interconnection portion 1110 of the goggle 1000. In some embodiments, the interconnection portion 1110 can comprise a foam or air permeable membrane (not shown) that covers the suspension or interconnection portion 1110 to prevent ingress of particulate into the interior of the goggle 1000. The air passing through the port(s) 1102 can pass over the membrane and provide enhanced ventilation and defogging for the goggle 1000. In some embodiments, the Venturi effect can contribute to a negative pressure being created in the interior of the goggle to induce airflow therethrough and reduce fogging. Such embodiments can thus provide improved ventilation and defogging compared to prior art goggles that do not comprise an airflow system.
DDDD:: In embodiments of the goggle having an isostatic posterior frame component 1004, the goggle 1000 can further comprise means for allowing further adjustability of the faceplate to conform to larger or smaller head sizes. For example, FIG. 44 illustrates that the posterior frame component 1004 can comprise a posterior faceplate 1120 and an isostatic mechanism 1122. The posterior faceplate 1120 can comprise a generally flat surface that extends about the periphery of the faceplate 1120 and can further comprise at least one flexible portion 1130. The flexible portion 1130 can give the posterior faceplate 1120 additional width adaptability to adjust to a given size and shape of a wearer's face. Thus, the generally flat surfaces of the posterior faceplate 1120 position on either side of the flexible portion 1130 can be spread or displaced from each other in order to accommodate a given head shape. For example, the flexible portion 1130 can allow opposing sides of the faceplate 1120 to be stretched apart from each other in an additional amount that allows the faceplate 1120 to accommodate larger head sizes. The additional amount of stretching or displacement is determined by the geometry and length of the flexible portion 1130.
DDDD:: For example, the flexible portion 1130 can be formed as a recessed or curved portion along the faceplate 1120. The flexible portion 1130 can deviate from the curvature on either side of the faceplate 1120. As the faceplate 1120 is flattened to accommodate a wide head size, the flexible portion 1130 can also flatten to allow increased coverage and adjustability of the faceplate 1120. Further, for smaller head sizes, the flexible portion 1130 can collapse into itself to allow the faceplate 1120 to be adjusted to tighter dimensions. Accordingly, the shape of the flexible portion 1130 can allow the faceplate 1120 to adjust to a variety of head shapes and sizes more so than a faceplate without a flexible portion.
DDDD:: Further, in some embodiments, the shape of the flexible portion 1130 can also be used to achieve a desired air flow into the interior of the goggle 1000, as desired. One or more of the flexible portions 1130 can be used for facilitating air flow and/or adjustability of the faceplate 1120.
DDDD:: The isostatic mechanism 1122 can comprise a plurality of connectors 1124 that extend from an anterior portion 1126 of the posterior frame component 1004. The connectors 1124 can be formed from a compressible or flexible material. For example, the connectors 1124 can be deflected such that the faceplate 1120 can be deformed to accommodate a given head shape. The connectors 1124 can be positioned generally equidistant from a centerline of the goggle 1000. As illustrated, the connectors 1124 can be positioned at the upper rim or edge of the goggle 1000; however, the connectors can also be positioned along a lower rim or edge of the goggle 1000.
DDDD:: Additionally, the isostatic mechanism 1122 can be integrally or monolithically formed with the faceplate 1120 such that these components form a single-piece unit. For example, in some embodiments, a desirably flexible material can be used to fabricate both be isostatic mechanism 1122 and the faceplate 1120. This can advantageously reduce the manufacturing time and cost, as well as simplify the assembly process. Accordingly, the goggle 1000 can be easily modularly formed using an economy of individual components that are interchangeable according to wearer preferences, as discussed further herein.
DDDD:: Embodiments of the goggle can also be formed modularly with wearer-interchangeable components that can be interconnected and secured together by using a wearer-actuatable fastener or fastening mechanism. In some embodiments, the wearer-actuatable fastening mechanism can be defined as a fastener or fastening mechanism that can be manually actuated between engaged and disengaged states by the wearer. Wearer-actuatable fasteners or fastening mechanisms may be actuated without requiring the use of specialized tools; however, it is contemplated that basic tools, such as a screwdriver, may be used to facilitate actuation. In some embodiments, a wearer-actuatable fastener or fastening mechanism can be actuated by hand, without tools. Further, some embodiments of the goggle can be modularly interchangeable and secured together without permanent or single-use fasteners, such as adhesives and some mechanical fasteners, including screws, bolts, adhesives, and the like.
DDDD:: For example, the embodiment of FIGS. 44-51 illustrates that the goggle 1000 can comprise first and second outriggers 1200, 1202. The outriggers 1200, 1202 can be removably coupled to the goggle 1000 and facilitate interconnection of the components of the goggle 1000 with each other. In the illustrated embodiment, the anterior module or frame portion 1022 of the goggle can be fastened or coupled to a posterior module or frame portion 1212 using the outriggers 1200, 1202. As discussed further below, the coupling formed by the outriggers 1200, 1202 with the goggle 1000 can be achieved by the wearer by manipulating the components by hand. Thus, the components of the goggle 1000 can be interchanged by the wearer without requiring the use of specialized tools, single-use fasteners or permanent fasteners.
DDDD:: In some embodiments, the outriggers can function as the primary means of coupling or attaching the anterior and posterior modules, such as between a lens support, an isostatic mechanism, and/or a faceplate. However, in some embodiments, a secondary means of coupling or attaching can be employed. A secondary means of coupling or attaching can comprise a snap-fit member, hook and loop member, and/or other types of interference fit or frictional engagement members.
DDDD:: For example, as shown in FIGS. 46-47, the posterior frame component 1004 can comprise on or more fastening members 1140 configured to engage with a corresponding fastening member 1142 of the frame 1010. The fastening members 1140, 1142 can comprise hooks and loops that are formed on the respective ones of the posterior frame component 1004 and the frame 1010. The arrows in FIG. 47 illustrate the general mating arrangement of the fastening members 1140, 1142. These components can be reversed in some embodiments, such that the posterior frame component 1004 comprises one or more protrusions or hooks that can mate with one or more apertures or loops formed on the frame 1010. Further, other structures can be used, including the snap-fit members, protrusions, slots, channels, apertures, plugs, loops, whether deformable, deflectable, compressible, incompressible, or rigid. Such structures can be formed monolithically with the respective part such that the structures and the part form a single, continuous part. However, the structures can also be separately attached to the respective part. As illustrated in FIG. 46, in some embodiments, the fastening members 1140 can be formed monolithically with the posterior frame component 1004. This can advantageously reduce costs and increase the facility of coupling the posterior frame component 1004 with the frame 1010.
DDDD:: These secondary connectors can be used in combination with the outriggers to couple the anterior and posterior modules together. Further, these secondary connectors can be disposed on portions of the anterior and posterior modules that are generally abutting when the anterior and posterior modules are positioned or coupled together as an assembly. In particular, these secondary connectors can be used as an initial coupling mechanism to hold the anterior and posterior modules together as an assembly while the outriggers are attached or detached from the assembly. Thus, the overall assembly, including the outriggers and other components discussed herein, can enable a wearer to quickly manipulate an interchange any given component of the assembly.
DDDD:: Referring to FIGS. 48A-B, the outrigger 1200 can comprise fastening portions 1220, 1222. The fastening portions 1220, 1222 can be configured to engage with and secure the at least the anterior and posterior frame portions 1022, 1212 together. For example, at least one of the anterior and posterior frame portions 1022, 1212 can comprise one or more coupling regions where the fastening portions 1220, 1222 can engage with the anterior and posterior frame portions 1022, 1212. As shown in FIGS. 49-50, the goggle 1000 can comprise upper and lower coupling regions 1224, 1226 that can act as designated areas along the anterior and posterior frame portions 1022, 1212 whereat the fastening portions 1220, 1222 can be coupled. In some embodiments, the coupling regions 1224, 1226 can comprise at least one structure, such as a recess, protrusion, slot, groove, aperture, and/or passage that can be used to engage with the fastening portions 1220, 1222 of the outrigger 1200. In the illustrated embodiment, the coupling regions 1224, 1226 can comprise a recess formed in the anterior frame portion 1022. In addition, some embodiments can be configured such that other components such as the lens can be secured or engaged by the fastening portions 1220, 1222.
DDDD:: Further, in some embodiments, the fastening portions 1220, 1222 of the outrigger 1200 can comprise recessed portions 1230, 1232 formed adjacent to sidewalls 1234, 1236. The recessed portions 1230, 1232 and the sidewalls 1234, 1236 can be configured to receive and secure portions of the anterior and posterior frame portions 1022, 1212 together. As shown in FIG. 51, the anterior and posterior frame portions 1022, 1212 can be coupled together with portions thereof being received into the recessed portions 1230, 1232 of the fastening portions 1220, 1222. The sidewalls 1234, 1236 of the fastening portions 1220, 1222 of the outrigger 1200 can be positioned against the posterior frame portions 1212 while a corresponding wall or body of the outrigger 1200 can be positioned against the anterior frame portion 1022.
DDDD:: The fastening portions 1220, 1222 can be clamped or snapped onto the anterior and posterior frame portions 1022, 1212 to secure the engagement between the outrigger 1200 and the frame. Thus, in some embodiments, the fastening portions 1220, 1222 can comprise protrusions or recesses that snap against corresponding recesses or protrusions of the anterior and posterior frame portions 1022, 1212. Further, the fastening portions 1220, 1222 can fit tightly over the anterior and posterior frame portions 1022, 1212 to secure them together.
DDDD:: FIGS. 49-51 illustrate positions of the outrigger 1200 as it is being moved into engagement with the goggle. The initial placement of the outrigger 1200 relative to the frame can be facilitated using a pin on the outrigger 1200. For example, as shown in FIGS. 48B-49, the outrigger 1200 can comprise an engagement pin 1240 that extends from a body of the outrigger 1200. The pin 1240 can be configured to engage with one or both of the anterior and posterior frame portions 1022, 1212 and provide a rotational engagement between the outrigger 1200 and the frame. The pin 1240 can also fix the position of the outrigger 1200 relative to the anterior and posterior frame portions 1022, 1212 when the outrigger 1200 is in a final assembled position, as discussed below.
DDDD:: During assembly, the pin 1240 of the outrigger 1200 can be inserted an aperture 1242 of the link 1030 of the goggle 1000 and into an aperture 1244 of the anterior frame portion 1022. The top view of FIG. 49 illustrates an alignment axis 1250 along which the pin 1240 must pass to be aligned with the apertures 1242, 1244. After the pin 1240 has been passed through the apertures 1242, 1244, the outrigger 1200 can be rotated toward an assembled position (shown in FIG. 51) until the fastening portions 1220, 1222 snap into engagement with the coupling regions 1224, 1226 formed in the anterior and posterior frame portions 1022, 1212. The succession of the rotational motion 1252 is illustrated in FIGS. 50-51.
DDDD:: Once in the assembled position as shown in FIG. 51, the outrigger 1200 can engage and clamp both the anterior and posterior frame portions 1022, 1212 together in a secure arrangement. The outriggers can thus interconnect the components or modules of the goggle together without requiring the use of specialized tools, single-use fasteners or permanent fasteners. This superior interchangeability allows the wearer to customize and replace components or modules as desired. For example, the wearer can replace the posterior frame portion 1212 depending on a desired activity or comfort level. Similarly, the anterior frame portion 1022 can also be replaced as desired.
DDDD:: The features and structures of some embodiments, such as the substantially rigid anterior module 900, can be incorporated into any variety of goggle embodiments. For example, a substantially rigid anterior module can be used in combination with an isostatic faceplate mechanism. Further, a substantially rigid anterior module can be used in combination with an interchangeable lens structure.
DDDD:: FIGS. 52-58 illustrate yet another embodiment of eyewear that can incorporate features and aspects, in whole or part, of embodiments and structures discussed above. The embodiment illustrates another quick release lens mechanism that can be used with a goggle as well as an eyeglass. Although the illustrated embodiment shows an eyeglass, the quick release lens mechanism can also be used with a goggle.
DDDD:: FIG. 52 is a perspective view of an eyeglass 1500, according to an embodiment. The eyeglass 1500 can comprise a unique quick release lens mechanism having an active restraint 1502 and a passive restraint 1504 that can serve to secure a lens 1506 relative to the eyeglass 1500. The eyeglass 1500 can also comprise a frame 1508 configured to support the lens 1506 in the field of view of the wearer, as discussed herein.
DDDD:: The lens engagement mechanism can operate much like the engagement mechanism described above with respect to FIGS. 31A-32B. The text and figures referenced above will not be repeated here, but are incorporated by reference and are considered to be alternative structures that can be used with other types of eyewear, such as the eyeglasses 1500 shown in FIGS. 52-58.
DDDD:: Referring to FIGS. 52-53, the passive restraint 1504 can comprise an engagement socket 1510 configured to engage with a corresponding retention structure 1512 of the lens 1506. The retention socket 1510 can be formed to comprise an engagement member 1520, such as a protrusion, slot, and/or recess that can engage with a corresponding recess, slot, and/or protrusion formed as the retention structure 1512 of the lens 1506. In the illustrated embodiment, the engagement member 1520 of the retention socket 1510 comprises a protrusion that is received into a slot (retention structure 1512) formed along a first lateral end 1522 of the lens 1506 when the first lateral end 1522 of the lens is inserted into the retention socket 1510.
DDDD:: In some embodiments, the engagement member 1520 of the retention socket 1510 can be positioned on an inner, anterior face of the retention socket 1510 such that the engagement member 1520 can engage a retention structure (such as an aperture) formed in the lens 1506 from a position anterior to the lens 1506. However, the engagement member 1520 can also be positioned on an inner posterior face of the retention socket 1510 such that the engagement member 1520 can engage a retention structure (such as an aperture) formed in the lens 1506 from a position posterior to the lens 1506.
DDDD:: Additionally, the active restraint 1502 can be configured to engage with a second lateral end 1528 of the lens 1506 in order to at least partially constrain the lens 1506 against anterior motion. For example, the active restraint 1502 can comprise a gate 1530. The gate 1530 can be moved between an engaged position and a disengaged position in order to allow the lens 1506 to be retained or released relative to the frame 1508 of the eyeglass 1500. In some embodiments, the gate 1530 can pivot relative to the frame 1508. In other embodiments, the gate 1530 can slide or translate relative to the frame 1508. The gate 1530 can be attached to the frame 1508 and maintained connected with the frame 1508 while in the engaged or disengaged positions. However, the gate 1530 can also be detachable from the frame 1508 and separable therefrom.
DDDD:: In some embodiments, the active restraint 1502 can further comprise a latch member 1532. As illustrated in FIGS. 55-57, the latch member 1532 can be moved between a locked position and an unlocked position. FIG. 55 illustrates the gate 1530 in a disengaged or open position and the latch member 1532 in the unlocked or open position. FIG. 56 illustrates the gate 1530 in an engaging or closed position and the latch member 1532 in the unlocked or open position. FIG. 57 illustrates the gate 1530 in an engaged or closed position and the latch member 1532 in the locked position. In some embodiments, when the latch member 1532 is in the unlocked position (as shown in FIGS. 55-56), the gate 1530 can rotate freely. However, when the latch member 1532 is in the locked position (as shown in FIG. 57), the gate 1530 can be constrained against rotation.
DDDD:: For example, the latch member 1532 can comprise an elongate body having a slot 1540 formed therein. The slot 1540 can be configured to receive a hinge pin 1542 that forms a pivot joint with the frame 1508, the gate 1530, and an earstem (not shown). The slot 1540 can be an elongate slot such that when the pin 1542 is received therein, the pin 1542 can travel between first and second ends of the slot, which can provide relative sliding movement between the pin 1542/frame 1508 and the latch member 1532. For example, the slot 1540 can define a travel distance of between at least about 0.1 inches and/or less than or equal to about 0.5 inches. In some embodiments, the travel distance can be about 0.3 inches. In such an embodiment, the latch member 1532 can slide between at least two positions, such as the locked and unlocked positions mentioned above. In the locked position, the pin 1542 is disposed in a first end of the slot 1540, and in the unlocked position, the pin 1542 is disposed in a second end of the slot 1540. In order to facilitate movement of the latch member 1532, the latch member 1532 can comprise a tab or gripping end that enables a wearer to grip and pull or push the latch member 1532 between the locked and unlocked positions.
DDDD:: The latch member 1532 can also be configured to engage a portion of the frame 1508 for preventing movement of the gate 1530 relative to the frame 1508. The latch member 1532 can comprise an engaging end 1550 having a tooth or projection formed thereon. When in the locked position, as shown in FIG. 57, the engaging end 1550 of the latch member 1532 can contact against a portion 1552 of the frame 1508 to prevent rotation of the latch member 1532.
DDDD:: In some embodiments, the engaging end 1550 can define a slot for receiving the portion 1552 of the frame 1508. The illustrated embodiment of FIG. 58 shows a pair of opposing teeth with a slot disposed therebetween. The slot of the engaging end 1550 can thereby receive the portion 1552 of the frame 1508 and resist rotational movement in either direction relative to the frame 1508. Further, the engaging end 1550 can further comprise an engagement mechanism for engaging with a corresponding structure of the portion 1552 of the frame 1508 for maintaining the latch member 1532 in the locked position. The engagement mechanism can comprise a protrusion and/or recess for engaging (i.e., by frictional or snap engagement) with a corresponding recess and/or protrusion of the frame 1508.
DDDD:: Further, as illustrated in FIG. 58, in some embodiments, the latch member 1532 and the gate 1530 can be rotationally coupled relative to each other and in contact such that the gate 1530 cannot rotate without the latch member 1532 and visa versa. Thus, the sliding movement of the latch member 1532 between locked and unlocked positions to prevent or permit rotational movement of the latch member 1532 also prevents or permits movement of the gate 1530 relative to the frame 1508. Accordingly, in some embodiments, rotational movement of the gate 1530 can be restrained relative to the frame 1508 by sliding the latch member 1532 between locked and unlocked positions. The latch member 1532 can pivot along with the gate 1530 when the latch member 1532 is in the unlocked position, as shown in FIG. 58, because the engaging end 1550 of the latch member 1532 has been pulled back to provide rotational clearance from the portion 1552 of the frame 1508 that would otherwise prevent rotation of the latch member 1532 if the latch member 1532 were in the locked position.
DDDD:: Referring again to FIGS. 53 and 54, in some embodiments, the lens 1506 and the frame 1508 can comprise corresponding engagement structures disposed adjacent to the second end 1528 of the frame 1508 for enhancing the engagement of the lens 1506 relative to the frame 1508. The engagement structures can comprise corresponding slots, protrusions, and/or recesses that engage with each other to provide further stability and engagement. In the illustrated embodiment, the lens 1506 can further comprise an aperture 1560 and the frame can further comprise a protrusion 1562. The protrusion 1562 can be received into the aperture 1560 of the lens 1506. This engagement can provide initial stability and fixation when installing the lens 1506 into the frame 1508. Thereafter, the gate 1530 can be closed to cover a portion of the second lateral end 1528 of the lens 1506 to provide additional constraint of the lens 1506 relative to the frame 1508.
DDDD:: Further, in some embodiments, the gate 1530 can comprise a corresponding retention structure 1564 configured to engage with a portion of the lens 1506 and/or a portion of the frame 1508. The retention structure 1564 can comprise a protrusion, slot, and/or recess that that can provide a further engagement of the gate 1530 relative to the frame 1508. For example, a protrusion of the gate 1530 could be snap fitted into an aperture or edge of the frame 1508 to reduce accidental dislodgement of the gate 1530 from the engaged position.
DDDD:: Additionally, although FIGS. 52-58 illustrate an embodiment of an eyeglass having a partial orbital, it is contemplated that these features can also be implemented with a full orbital frame. Additionally, the alternative lens retention mechanisms disclosed further above can also be incorporated into eyewear, such as an eyeglass having partial or full orbitals.
DDDD:: In addition, in accordance with some of the embodiments of the goggle discussed above, the present inventions also provide for methods of interchanging/modifying anterior and/or posterior modules of the goggle, an isostatic faceplate of the goggle, a lens and/or retention mechanism of the goggle, and/or a rigid faceplate of the goggle. Thus, various methods are provided for using and interchanging/modifying the goggle using a modular system to incorporate desired characteristics and properties utilizing one or more of the features of the goggle embodiments discussed above. These methods can be performed at a point-of-sale by a seller or periodically as needed by an owner/wearer. The methods can be performed in a single instance or repeatedly over the life of the goggle. Kits can also be provided that can include one or more of the components discussed above and/or other components for use with an embodiment of the goggles.
DDDD:: Although these inventions have been disclosed in the context of certain preferred embodiments and examples, it will be understood by those skilled in the art that the present inventions extend beyond the specifically disclosed embodiments to other alternative embodiments and/or uses of the inventions and obvious modifications and equivalents thereof. In addition, while several variations of the inventions have been shown and described in detail, other modifications, which are within the scope of these inventions, will be readily apparent to those of skill in the art based upon this disclosure. It is also contemplated that various combination or sub-combinations of the specific features and aspects of the embodiments may be made and still fall within the scope of the inventions. It should be understood that various features and aspects of the disclosed embodiments can be combined with or substituted for one another in order to form varying modes of the disclosed inventions. Thus, it is intended that the scope of at least some of the present inventions herein disclosed should not be limited by the particular disclosed embodiments described above.
CLI :: 1. Eyewear comprising: a frame; a lens configured to be fitted against the frame; an engagement mechanism comprising a gate, a hinge pin, and a latch member, the gate being coupled to the frame and being operative to move along a first path between an open position and a closed position, the latch member being functionally connected to the gate and being constrained to move along the first path together with the gate upon movement of the gate, the latch member further being movable relative to the gate along a second path between a disengaged position and an engaged position to disengage or engage with at least one of the lens and a portion of the frame to prevent movement of the gate relative to the frame when the latch member is in the engaged position to maintain the lens fitted against the frame, wherein the first path is different from the second path, the first path being a rotational path, wherein the hinge pin defines a generally vertical axis about which the gate and the latch member rotate when moving between the open position and the closed position.
CLD :: 2. The eyewear of claim 1, wherein the latch member is slidable relative to the gate.
CLD :: 3. The eyewear of claim 2, wherein the second path is a generally linear path.
CLD :: 4. The eyewear of claim 3, wherein the linear path is generally horizontal.
CLD :: 5. The eyewear of claim 1, further comprising a biasing member disposed intermediate the latch member and the gate, the biasing member being configured to urge the latch member to the engaged position.
CLD :: 6. The eyewear of claim 1, wherein the lens is a unitary lens.
CLD :: 7. The eyewear of claim 1, wherein the engagement mechanism is located in a first lateral region of the eyewear.
CLD :: 8. The eyewear of claim 7, further comprising a second engagement mechanism located in a second lateral region of the eyewear.
CLD :: 9. The eyewear of claim 8, wherein the second engagement mechanism comprises a protrusion for receiving a recess on the lens.
CLD :: 10. The eyewear of claim 1, wherein the engagement mechanism comprises a protrusion that is received in a recess or slot on the lens.
CLI :: 11. Eyewear comprising: a frame; a lens configured to be fitted against the frame; an engagement mechanism comprising a gate, a hinge pin, and a latch member, the gate being coupled to the frame and being operative to move along a first path between an open position and a closed position, the latch member being functionally connected to the gate and being constrained to move along the first path together with the gate upon movement of the gate, the latch member further being movable relative to the gate along a second path between a disengaged position and an engaged position to disengage or engage with at least one of the lens and a portion of the frame to prevent movement of the gate relative to the frame when the latch member is in the engaged position to maintain the lens fitted against the frame, wherein the first path is different from the second path, the first path being a rotational path, wherein the hinge pin defines a first rotational axis about which the gate and the latch member rotate when moving between the open position and the closed position, wherein the latch member comprises an elongate slot and wherein the hinge pin passes through the elongate slot when the latch member and the gate are in an assembled state.
CLD :: 12. The eyewear of claim 11 wherein the latch member is slideable relative to the gate such that the hinge pin moves between first and second ends of the elongate slot when the latch member is moved between the disengaged and engaged positions.
CLI :: 13. Eyewear comprising: a frame; a lens configured to be fitted against the frame; an engagement mechanism comprising a gate and a latch member, the gate being coupled to the frame and being operative to move along a first path between an open position and a closed position, the latch member being functionally connected to the gate and being constrained to move along the first path together with the gate upon movement of the gate, the latch member further being movable relative to the gate along a second path between a disengaged position and an engaged position to disengage or engage with at least one of the lens and a portion of the frame to prevent movement of the gate relative to the frame when the latch member is in the engaged position to maintain the lens fitted against the frame, wherein the first path is different from the second path, wherein the latch member comprises an engaging end configured to mate against at least one of the frame and the lens, the engaging end of the latch member comprising a toothed portion having a ramped surface, the ramped surface being configured to contact the frame as the latch member is moved from the disengaged position to the engaged position.
ENDRECORD
TITL:: Elbow pad and upper body garment with elbow reinforcement
DTYP:: pat
ATYP:: utility
PTNO:: 08661563
ISDT:: 20140304
APNO:: 13249328
APDT:: 20110930
PBNO::
PBDT::
AGAP:: 886
AGPB::
AGAL:: 1176
INVS:: EVANS LINDSAY M.|PERRY TAM'RA|FLORA MARTIN L.|SANTO MARIA-PAZ S.
APLS:: EVANS LINDSAY M.|PERRY TAM'RA|FLORA MARTIN L.|SANTO MARIA-PAZ S.
LREP:: DORITY & MANNING, P.A.
ASSE:: MASSIF MOUNTAIN GEAR COMPANY, LLC
EXMR:: MORAN KATHERINE
NCLS:: 18
NCLI:: 2
NCLD:: 16
NFIG:: 11
DSCL:: 3436
SUML:: 931
BKGL:: 285
DDRL:: 407
DDSL:: 2241
CLFL:: 191
CLIL:: 192
CLDL:: 249
NREF:: 33
NRFA:: 29
NRFX:: 4
IPCC:: A-A-41-D-13-08-F-I
USCC:: 2 16||223 72| 2459| 2 24| 2 81|128881|
SFLD:: 128881
RLDX:: PRV:61422720:20101214|XXX:20120144542:20120614
NRLD:: 2
NPRV:: 1
NPCT:: 0
ABST:: An elbow pad is provided for an upper body garment with a sleeve portion having a shoulder end and a wrist end. The elbow pad includes padding material and a substantially J-shaped preferential fold line. The preferential fold line is configured so that the padding material bends along the preferential fold line to cup the wearer's elbow. The elbow pad may have multiple layers. The elbow pad may be attached to an upper body garment, and may be done so as to fill an opening in a sleeve portion of the garment.
DHXX:: CROSS-REFERENCE TO RELATED APPLICATION
DDXX:: The present application is based on and claims priority to U.S. Provisional Application 61/422,720 having a filing date of Dec. 14, 2010, which is incorporated by reference herein.
DHXX:: TECHNICAL FIELD
DDXX:: The present disclosure relates to an elbow pad and an upper body garment with reinforcement for a wearer's elbow.
DHBK:: BACKGROUND
DDBK:: Various garments have employed reinforcement at areas prone to additional wear or pressure. Such reinforcements need to balance competing interests such as comfort, durability, air and moisture permeability, and thermal suitability, etc. For example, an elbow pad for a garment that provides superior abrasion resistance may not provide comfort for a wearer in a warm environment in terms of seam location, thickness, permeability, etc. Garments having multiple similar layers at the elbow may provide comfort but insufficient strength and durability.
DDBK:: Military garments provide particular challenges due to the high performance requirements and multiple needs that must be met by each component of a garment. Military garments may also have flame or fire resistance, wicking, and/or stretchability needs for wearers in extreme environments. Military wearers may wear garments for longer durations or with other equipment atop or below, including heavy protective covering, body armor, headgear, or the like. Also, where a wearer is to be involved in shooting a rifle or the like, having a stable shooting platform at the elbow area may be desired. Therefore, having an elbow pad that is reliably located at an elbow area in a repeatable fashion and that provides a stable platform for an extended elbow holding a rifle barrel may be important to some wearers.
DDBK:: Accordingly, there is a need for an improved upper body garment, suitable for military wearers but not limited to such persons, and that meets multiple performance and wear criteria, including elbow reinforcement.
DHSM:: SUMMARY
DDSM:: The present disclosure is directed generally to elbow pads and upper body garments having reinforced elbow sections. According to certain aspects of the disclosure, an elbow pad is provided for an upper body garment with a sleeve portion having a shoulder end and a wrist end. The elbow pad includes padding material configured in an elbow pad shape, and a substantially J-shaped preferential fold line. The preferential fold has a first section extending from a first end of the padding material for placement facing the shoulder end toward a second end of the padding material for placement facing the wrist end. The preferential fold line curves in a central area of the padding material and has a second section extending to a forward side of the padding material. The preferential fold line is configured so that the padding material bends along the preferential fold line to cup the wearer's elbow. Various options and modifications are available.
DDSM:: For example, the preferential fold line may comprise a first preferential fold line and the each elbow pad may include a second preferential fold line, the second preferential fold line extending from a first end of the padding material to the second end of the padding material and crossing the second section of the first preferential fold line, with the second preferential fold line being configured to further cup the wearer's elbow. Also, the preferential fold line or lines may be formed in part by stitching penetrating the padding material. The padding material may have a convex shape extending outward in the central area.
DDSM:: If desired, the padding material may have an inner layer, an intermediate layer, and an outer abrasion resistant layer. If so, the intermediate layer of the padding material may be an open cell foam, or may be other padded material. At least one of the padding material layers may be permeable by at least one of air or moisture. The padding material layers may also be attached together in a non-planar, cupped orientation so as to enhance a convex shape. Further, if desired, at least one of the padding material layers may be at least one of flame resistant or fire resistant.
DDSM:: According to other aspects of the disclosure, an upper body garment is provided with reinforcement for a wearer's elbow, the garment including a torso portion, two sleeve portions, and two elbow pads. Each sleeve portion has a shoulder end attached to the torso portion and a wrist end extending distally from the shoulder end. Each sleeve portion is formed of a sleeve material in a substantially tubular shape, and the sleeve material defines a location for the wearer's elbow. Each elbow pad is attached to a respective sleeve portion at the location for the wearer's elbow. Each elbow pad has a substantially J-shaped preferential fold line. The preferential fold line has a first section extending from a first end of the elbow pad facing the shoulder end of the sleeve portion toward a second end of the elbow pad facing the wrist end of the sleeve portion. The preferential fold line curves in a central area of the elbow pad and has a second section extending to a forward side of the elbow pad. The preferential fold line is configured so that the elbow pad bends along the preferential fold line to cup the wearer's elbow. As above, various options and modifications are possible.
DDSM:: For example, the preferential fold line may comprise a first preferential fold line and each elbow pad may include a second preferential fold line. The second preferential fold line extends from a first end of the elbow pad to the second end of the elbow pad and crosses the second section of the first preferential fold line. The second preferential fold line is configured to further cup the wearer's elbow. If desired, the preferential fold lines or lines may be formed in part by stitching penetrating the elbow pad. The elbow pad may have a convex shape extending outward in the central area.
DDSM:: The sleeve material may define an opening at the elbow location and the elbow pad may be sized larger than the opening. The opening may be defined by edges extending circumferentially around the opening. The elbow pad may be attached to the sleeve portion underneath the edges so as to fill the opening with the elbow pad. The elbow pad may also be attached to the sleeve portion underneath the opening in a non-planar, cupped orientation so as to enhance a convex shape.
DDSM:: If desired, each elbow pad may include an inner layer, an intermediate layer, and an outer abrasion resistant layer. If so, the intermediate layer of the padding material may be an open cell foam, or may be other padded material. The elbow pad layers may be attached together in a non-planar, cupped orientation so as to enhance a convex shape. If desired, at least one of the elbow pad layers may be at least one of flame resistant or fire resistant.
DDSM:: These and other features, aspects and advantages of the present invention will become better understood with reference to the following description and appended claims. The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments of the invention and, together with the description, serve to explain the principles of the invention.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: A full and enabling disclosure of the present invention, including the best mode thereof to one skilled in the art, is set forth more particularly in the remainder of the specification, including reference to the accompanying figures, in which:
DDDR:: FIG. 1 is a front perspective view of an upper body garment with reinforced elbow areas;
DDDR:: FIG. 2 is a front view of the garment of FIG. 1;
DDDR:: FIG. 3 is a rear view of the garment of FIG. 1;
DDDR:: FIG. 4 is a left side view of the garment of FIG. 1;
DDDR:: FIG. 5 is a right side view of the garment of FIG. 1;
DDDR:: FIG. 6 is a top view of the garment of FIG. 1;
DDDR:: FIG. 7 is a bottom view of the garment of FIG. 1;
DDDR:: FIG. 8 is a front perspective view of the garment of FIG. 1, as worn;
DDDR:: FIG. 9 is a rear perspective view of a portion of the garment of FIG. 1 as worn with the wearer's elbow straightened;
DDDR:: FIG. 10 is a rear perspective view of a portion of the garment of FIG. 1 as worn with the wearer's elbow bent; and
DDDR:: FIG. 11 is a sectional view of an elbow area of the garment of FIG. 1 taken along line 11-11 in FIG. 9.
DDDR:: Repeat use of reference characters in the present specification and drawings is intended to represent the same or analogous features or elements.
DHDD:: DETAILED DESCRIPTION
DDDD:: Reference now will be made in detail to embodiments of the upper body garment with reinforced elbow areas, one or more examples of which are illustrated in the drawings. Each example is provided by way of explanation, not limitation. In fact, it will be apparent to those skilled in the art that various modifications and variations can be made in the present disclosure without departing from the scope or spirit of the invention. For instance, features illustrated or described as part of one embodiment can be used with another embodiment to yield a still further embodiment. Thus, it is intended that the present disclosure covers such modifications and variations as come within the scope of the appended claims and their equivalents.
DDDD:: FIG. 1 shows an upper body garment 20 incorporating aspects of the present disclosure. As shown, garment 20 is a shirt, but it should be understood that the upper body garment as discussed and claimed herein could be any garment suitable for wearing on an upper body portion. Therefore, the present disclosure could also be directed to an undershirt, a shirt, a top layer garment such as a sweatshirt or jacket, etc., and upper body garment should not be restrictively interpreted to mean only a shirt.
DDDD:: Upper body garment 20 includes a torso portion 22 and two sleeve portions 24. Each sleeve portion 24 has a shoulder end 26 attached to torso portion 22 and a wrist end 28 extending distally from the shoulder end.
DDDD:: As shown, torso portion 22 and sleeve portion 24 may be made from various pieces of fabric, stitched together. The fabric pieces may have different properties depending on the location on the wearer's body. For example, a first fabric may be used on torso side and underarm sections 30,32,34 and sleeve portions 24. A second fabric may be used on torso chest sections 36,37,38, collar section 40, and torso back section 42. The fabrics may be stretchable, breathable, wicking, and flame resistant. The collar, chest and back sections may differ from the side and sleeve sections by providing more wicking and breathability. The side and sleeve sections may provide enhanced flame and heat protection, which may be useful if the wearer is also wearing body armor providing additional torso protection but leaving the arms more exposed.
DDDD:: As shown, stitching on garment 20 is intended to be comfortable to wearers in various environments, including warm weather locales. Therefore, stitching may be avoided at locations where it could be uncomfortable, in particular in combination with the wearing of other garments or body armor, and where perspiration and dusty conditions might cause discomfort. Pockets provided may be low-profile as well, providing functionality and comfort. Loop connector portions (such as Velcro(R)) may be provided for receiving patches providing name, rank, unit, flag, etc., information. Pockets may be zipper closed for security, and there may be gathers at sleeve ends, waist areas, etc. Any zippers, pulls, pockets or other add-ons may provide thermal or flame resistance. Infra-red identification elements may be provided and may be made selectively concealable as well.
DDDD:: It should be understood that the above optional structures may be useful in the disclosed upper body garment, in particular for military use. However, many variations and options are possible with such a garment according to the present disclosure. Thus, many different shirt and other upper body garments may benefit from the present disclosure regardless of garment structure and optional features.
DDDD:: As shown, each sleeve portion 24 includes an opening 44 therethrough between the shoulder end 26 and the wrist end 28 (see FIG. 3). Openings 44 may be defined by multiple fabric sections on sleeves 24. For example, an opening 44 may be formed by edges of the sleeve sections 46,48,50, although it would be possible to employ more or fewer sections if desired for reasons such as wearability, comfort, functionality (such as pocket location), manufacturing ease, etc. Fabric sections 46, 48, 50 may comprise the same type of fabric or different types of fabric.
DDDD:: Elbow pads 52 are located in each opening 44 in sleeve portions 24. As shown in FIG. 11, elbow pads 52 are attached from an inside portion of the sleeves. That is, openings 44 are defined by edges 54, and elbow pads 52 are slightly larger than the openings and attached beneath the edges. Elbow pads 52 are held in place by stitching 56 surrounding the elbow pads. As shown in FIG. 11, overlapped layers and/or serged stitching may be provided for strength. Such structure provides benefits such as a low profile allowing for less abrasion damage during wear. Elbow pads 52 fill openings 44 from the inside as illustrated, but it should be understood that the elbow pads could be attached in other ways, such as to an inner or an outer sleeve surface, with or without any opening.
DDDD:: As shown, elbow pads 52 are formed from padding material and have three layers, although other numbers of layers are possible. Inner layer 58 may be formed of the same material as the remainder of sleeve portion 24, or if desired, torso portion 22. Breathability, moisture management, and/or comfort of the wearer are concerns for selecting this fabric. If desired, a brushed tricot or jersey knit for example may be employed for inner layer 58. Outer layer 60 may also be the same material.
DDDD:: However, if desired, outer later 60 may be a stronger fabric, having abrasion resistance and cut and tear resistance. Therefore a nylon canvas type material or a twill with or without stretch properties could be employed for example for outer layer 60.
DDDD:: Outer layer 60 may also be reinforced in various ways, such as by use of a coating. Such reinforcement could comprise a continuous or discontinuous polymer coating. As shown, a pattern of polymer dots 62 is applied to the outer surface of outer layer 60. Such dots may comprise a material such as a thermoplastic polyurethane (TPU), although other materials and patterns could be employed for reinforcement, or no reinforcement could be used if desired. Use of a discontinuous reinforcement allows for the benefits of the fabric in terms of stretchability, breathability, fire-resistance, etc., discussed above to be present at the elbow pad, while the discontinuous coating provides additional desired benefits of strength and abrasion resistance without meaningfully degrading the benefits of the fabric.
DDDD:: As shown, padding may be provided by an intermediate layer 64. Layer 64 may be formed in a single piece with two sides 66,68, separated by preferential fold stitching 70. If desired, intermediate layer 64 may comprise a closed cell foam or an open cell foam such as urethane, polyurethane or other materials. Use of open cell foam allows elbow pad 52 to be breathable throughout, as compared to closed cell foam or some other material. Alternatively, a spacer mesh type product or any other type of padding material could be used. If desired, the intermediate layer may provide shock attenuation, shock resistance, and/or stability for use by a wearer when the arm is extended for shooting. If desired, the stitching, fabric, and padding can be dimensioned and tensioned so that the elbow pad is slightly convex in an outer direction complimentary to the elbow shape whether or not the wearer's elbow is bent (See FIG. 9). Intermediate layer 64 could be formed of multiple pieces or multiple sub-layers, if desired. Further, different layers of similar or different materials could be bonded together forming a single piece or layer, if desired. Intermediate layer 64 or other layers 58,60 may be fire or flame resistant if desired. Accordingly, coatings such as phosphorus compounds, halogen compounds such as bromine with a binder, or the like may be employed. Suitable known compounds meeting Underwriters Laboratories fire resistance specification UL 94 HF-1 could be used, available from various suppliers, to coat one or more of such layers.
DDDD:: As shown in FIGS. 3, 9, and 10, at least one preferential fold line 72 may be formed in elbow pad 52. If desired, more preferential fold lines may be provided, for example by second preferential fold line 74. Preferential fold lines 72,74 may allow for wearer comfort when the arm is extended or bent. Fold lines 72,74 can help locate elbow pad 52 at the elbow for comfort and protection when the arm is bent. During bending in particular, the fold lines 72,74 help form a cup shape and locate the pad at the proper spot to protect the elbow, both in the longitudinal (wrist-shoulder) direction, and circumferentially around the arm. However, even when the arm is extended, the fold lines help cup the elbow pad slightly to position it at the elbow, either alone or in combination with the slight convex pad shape as mentioned above. Thus, the preferential fold lines can be used to assist in forming a slight convex shape when the arm is extended.
DDDD:: As shown, preferential fold line 72 is substantially J-shaped and has a first section 76 that extends from a first end 78 of elbow pad 52 facing shoulder end 26 of sleeve portion 24 toward a second end 80 of the elbow pad facing wrist end 28 of the sleeve portion. The preferential fold line 72 curves in a central area 82 of elbow pad 52 and has a second section 84 extending to a forward side 86 of the elbow pad. As shown in FIG. 10, preferential fold line 72 is configured so that, when a wearer bends an elbow, elbow pad 52 bends along the preferential fold line to cup the elbow.
DDDD:: Second preferential fold line 74 extends from first end 78 of elbow pad 52 to second end 80 of the elbow pad and crosses second section 84 of first preferential fold line 72 at a point 88. Second preferential fold line 74 is configured to cooperate with first preferential fold line 72 to further cup the elbow when the wearer bends the elbow. As shown, both preferential fold lines 72,74 are substantially curved. By using a J-shaped first preferential fold line 72, above the elbow, there are three pad sections 90,92,94 and below the elbow there are two pad sections 90,96 (note that section 90 curves around in a J-shape). This combination of shapes, separated by preferential fold lines 72,74 provides an effectively flexible while still protective cover to the wearer's elbow, whether straightened or bent. Further, the combination of preferential fold lines 72,74 effectively locates the pad at the elbow when straightened or bent, as opposed to having the pad slide to one side or the other, or up or down the arm.
DDDD:: It should be understood that modifications to the design, placement, and/or garment choice, as well as combinations or sub-combinations of the features mentioned above, are possible within the scope of the present invention. Therefore, use of elbow pads having differing shapes for preferential fold lines, or only one preferential fold line, or more than two preferential fold lines, is possible, whether or not the pad underlies the sleeve opening edge. Also, different materials may be employed than the examples mentioned above for all pieces, coatings, etc.
DDDD:: This written description uses examples to disclose aspects of the invention, including the best mode, and also to enable any person skilled in the art to practice the invention, including making and using any devices or systems and performing any incorporated methods. The patentable scope of the invention is defined by the claims, and may include other examples that occur to those skilled in the art. Such other examples are intended to be within the scope of the claims if they include structural elements that do not differ from the literal language of the claims, or if they include equivalent structural elements with insubstantial differences from the literal languages of the claims.
CLI :: 1. An elbow pad for an upper body garment with a sleeve portion having a shoulder end and a wrist end, the elbow pad comprising: padding material configured in an elbow pad shape; a substantially J-shaped preferential fold line, the preferential fold line having a first section extending from a first end of the padding material for placement facing the shoulder end toward a second end of the padding material for placement facing the wrist end, the preferential fold line curving in a central area of the padding material and having a second section extending to a forward side of the padding material, the preferential fold line configured so that the padding material bends along the preferential fold line to cup the wearer's elbow; and wherein the preferential fold line comprises a first preferential fold line and further including a second preferential fold line, the second preferential fold line extending from a first end of the padding material to the second end of the padding material and crossing the second section of the first preferential fold line, the second preferential fold line configured to further cup the wearer's elbow.
CLD :: 2. The elbow pad of claim 1, wherein the preferential fold line is formed in part by stitching penetrating the padding material.
CLD :: 3. The elbow pad of claim 1, wherein the padding material has a convex shape extending outward in the central area.
CLD :: 4. The elbow pad of claim 1, wherein the padding material has an inner layer, an intermediate layer, and an outer abrasion resistant layer.
CLD :: 5. The elbow pad of claim 4, wherein the intermediate layer of the padding material is an open cell foam.
CLD :: 6. The elbow pad of claim 4, wherein at least one of the padding material layers is permeable by at least one of air or moisture.
CLD :: 7. The elbow pad of claim 4, wherein the padding material layers are attached together in a non-planar, cupped orientation so as to enhance a convex shape.
CLD :: 8. The elbow pad of claim 4, wherein at least one of the padding material layers is at least one of flame resistant or fire resistant.
CLI :: 9. An upper body garment with reinforcement for a wearer's elbow, the garment comprising: a torso portion; two sleeve portions, each sleeve portion having a shoulder end attached to the torso portion and a wrist end extending distally from the shoulder end, each sleeve portion being formed of a sleeve material in a substantially tubular shape, the sleeve material defining a location for the wearer's elbow; and two elbow pads, each elbow pad being attached to a respective sleeve portion at the location for the wearer's elbow, the elbow pad having a substantially J-shaped preferential fold line, the preferential fold line having a first section extending from a first end of the elbow pad facing the shoulder end of the sleeve portion toward a second end of the elbow pad facing the wrist end of the sleeve portion, the preferential fold line curving in a central area of the elbow pad and having a second section extending to a forward side of the elbow pad, the preferential fold line configured so that the elbow pad bends along the preferential fold line to cup the wearer's elbow, the preferential fold line comprising a first preferential fold line, each elbow pad further including, a second preferential fold line. the second preferential fold line extending from a first end of the elbow pad to the second end of the elbow pad and crossing the second section of the first preferential fold line, the second preferential fold line configured to further cup the wearer's elbow.
CLD :: 10. The garment of claim 9, wherein the preferential fold line is formed in part by stitching penetrating the elbow pad.
CLD :: 11. The garment of claim 9, wherein the elbow pad has a convex shape extending outward in the central area.
CLD :: 12. The garment of claim 9, wherein the sleeve material defines an opening at the elbow location and the elbow pad is sized larger than the opening, the opening defined by edges extending circumferentially around the opening, the elbow pad being attached to the sleeve portion underneath the edges so as to fill the opening with the elbow pad.
CLD :: 13. The garment of claim 12, wherein the elbow pad is attached to the sleeve portion underneath the opening in a non-planar, cupped orientation so as to enhance a convex shape.
CLD :: 14. The garment of claim 9, where each elbow pad includes an inner layer, an intermediate layer, and an outer abrasion resistant layer.
CLD :: 15. The garment of claim 14, wherein at least one of the layers of each elbow pad is permeable by at least one of air or moisture.
CLD :: 16. The garment of claim 14, wherein the intermediate layer of each elbow pad is an open cell foam.
CLD :: 17. The garment of claim 14, wherein the elbow pad layers are attached together in a non-planar, cupped orientation so as to enhance a convex shape.
CLD :: 18. The garment of claim 14, wherein at least one of the elbow pad layers is at least one of flame resistant or fire resistant.
ENDRECORD
TITL:: Protective articles having a plurality of core members
DTYP:: pat
ATYP:: utility
PTNO:: 08661564
ISDT:: 20140304
APNO:: 12471252
APDT:: 20090522
PBNO::
PBDT::
AGAP:: 1747
AGPB::
AGAL:: 3304
INVS:: DODD MARK D.
APLS:: DODD MARK D.
LREP:: PATENT CAPITAL GROUP
ASSE:: PINWREST DEVELOPMENT GROUP, LLC.
EXMR:: HUYNH KHOA|KINSAUL ANNA
NCLS:: 16
NCLI:: 2
NCLD:: 14
NFIG:: 20
DSCL:: 6467
SUML:: 313
BKGL:: 337
DDRL:: 735
DDSL:: 6156
CLFL:: 129
CLIL:: 130
CLDL:: 167
NREF:: 78
NRFA:: 51
NRFX:: 27
IPCC:: A-A-41-D-13-00-F-I
USCC:: 2 22||602 6| 2272| 2 22|428 48| 16221| 2 24| 2467|602 26|428 52| 2461| 2 22| 2461|428178| 2455| 2424| 2 16| 2232| 2456| 2267|602 5| 89 3602|D291211| 2455|D29100|D29122| 2 22| 2 22| 2242|| 2 46|| 2455|| 2911|| 2 81|| 2 82|| 2227|| 2231|| 2269|| 2 22|| 2 23|| 2 24||602 5||602 12||602 23||602 36||602 62||602 78|
SFLD:: 2242| 2 46| 2455| 2911| 2 81| 2 82| 2227| 2231| 2269| 2 22| 2 23| 2 24|602 5|602 12|602 23|602 36|602 62|602 78
RLDX:: CIP:11057954:20050215:12471252|PRV:61055295:20080522|XXX:20090276933:20091112
NRLD:: 3
NPRV:: 1
NPCT:: 0
ABST:: A protective guard for reducing injury to a shin of a person includes a conformable substrate and a plurality of core members disposed adjacent to a surface of the conformable substrate. The plurality of core members are arranged such that a first of the core members is rotationally movable about at least one axis relative to a second of the core members. A flexible fabric membrane comprised of natural or synthetic fibers is positioned adjacent to at least one of the conformable substrate and the plurality of core members.
DHXX:: CROSS-REFERENCE TO RELATED APPLICATIONS
DDXX:: This application is a continuation-in-part of U.S. patent application Ser. No. 11/057,954, filed Feb. 15, 2005 now U.S. Pat. No. 8,220,072; this application also claims the benefit of U.S. Provisional Application No. 61/055,295, filed May 22, 2008. All of the above applications are hereby incorporated by reference.
DHBK:: BACKGROUND OF THE INVENTION
DDBK:: 1. Field of the Invention
DDBK:: The present invention relates generally to protective articles and in particular to protective articles to protect persons, animals, and other non-living articles or items from impact or other forces.
DDBK:: 2. Description of Related Art
DDBK:: Guards and other protective equipment is widely used in amateur and professional sports and other activities to protect participants' from injury. For example, in soccer, players often wear shin guards to protect their lower legs in the event that they are kicked by other players during a game. Football players wear protective shoulder and thigh pads to prevent injury due to impact with other players. Baseball players, such as catchers, use protective chest pads to prevent injury if the catcher is struck by the baseball. Without adequate protection in these sports and others, the risk of injury is high. Protective equipment is also used in non-sports settings. One example is the medical industry which uses casts and splints to immobilize and protect areas of a patient's body.
DDBK:: Existing guards and protective equipment provide some protection for the persons or equipment to which the guards are applied, but the guards are typically bulky and uncomfortable. Many times, the guards are a single piece of rigid plastic or other material that is affixed to the protected article. Other times, the guards may be a very thick padding or other material. Obtaining a customized fit between the guard and the protected article is often impossible. In the case of person's wearing the guard, this lack of customized fit makes the guards less comfortable to wear, and the guards could under some circumstances impede the movement of the person. Finally, a guard that does not fit properly also fails to provide maximum impact protection to a person.
DHSM:: SUMMARY
DDSM:: The problems presented by existing protective guards are solved by the systems and methods of the illustrative embodiments described herein. In one embodiment, a protective guard includes an elastomeric sheath having a pocket disposed therein. The protective guard further includes a central core having a plurality of rigid plates. The central core is disposed within the pocket of the elastomeric sheath. The plurality of rigid plates includes a first plate that is joined by at least one hinge to a second plate.
DDSM:: In another embodiment, a protective guard having a conformable substrate and a plurality of core members is provided. The plurality of core members are at least partially embedded within the conformable substrate. The core members are arranged such that a first of the core members is rotationally movable about at least one axis relative to a second of the core members.
DDSM:: In still another embodiment, a protective guard is provided that includes a conformable substrate and a plurality of core members disposed adjacent to a surface of the conformable substrate. The core members are arranged such that a first of the core members is rotationally movable about at least one axis relative to a second of the core members.
DDSM:: In yet another embodiment, a protective guard is provided that includes an elastomeric substrate and a plurality of non-elastomeric core members. The non-elastomeric core members are at least partially embedded within the elastomeric substrate.
DDSM:: Other objects, features, and advantages of the illustrative embodiments will become apparent with reference to the drawings, detailed description, and claims that follow.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: FIG. 1 illustrates a front view of a protective guard according to an illustrative embodiment, the protective guard having a conformable substrate and a central core disposed therein;
DDDR:: FIG. 2 depicts a perspective view of the protective guard of FIG. 1 secured to a leg of a person;
DDDR:: FIG. 3 illustrates a partial front view of the central core of FIG. 1, the central core including a plurality of core members;
DDDR:: FIG. 4 depicts a partial front view of a plurality of round core members according to an illustrative embodiment;
DDDR:: FIG. 5 illustrates a partial front view of a plurality of oval core members according to an illustrative embodiment;
DDDR:: FIG. 5A illustrates a partial front view of a plurality of hexagonal core members according to an illustrative embodiment;
DDDR:: FIG. 6 depicts a partial front view of a plurality of rectangular core members according to an illustrative embodiment;
DDDR:: FIG. 7 illustrates a cross-sectional bottom view of the core members of FIG. 3 taken at VII-VII;
DDDR:: FIG. 8 depicts a cross-sectional bottom view similar to FIG. 7 of a plurality of core members according to an illustrative embodiment;
DDDR:: FIG. 9 illustrates a cross-sectional bottom view of the core members of FIG. 6 taken at IX-IX;
DDDR:: FIG. 10 depicts a cross-sectional bottom view of the conformable substrate and central core of FIG. 1 taken at X-X;
DDDR:: FIG. 11 illustrates a cross-sectional bottom view similar to FIG. 10 of a conformable substrate and central core according to an illustrative embodiment;
DDDR:: FIG. 12 depicts a cross-sectional bottom view similar to FIG. 10 of a conformable substrate and central core according to an illustrative embodiment;
DDDR:: FIG. 13 illustrates a cross-sectional view of a conformable substrate, a central core, and a flexible membrane according to an illustrative embodiment, the cross-sectional view being similar to the cross-sectional view illustrated in FIG. 10;
DDDR:: FIG. 14 depicts a cross-sectional view similar to FIG. 13 of a conformable substrate, a central core, and a flexible membrane according to an illustrative embodiment;
DDDR:: FIG. 15 illustrates a cross-sectional view similar to FIG. 13 of a conformable substrate, a central core, and a flexible membrane according to an illustrative embodiment;
DDDR:: FIG. 16 depicts a side view of a glove having a central core according to an illustrative embodiment;
DDDR:: FIG. 17 illustrates a rear view of the glove of FIG. 16;
DDDR:: FIG. 18 depicts a perspective view of an article of footwear having a central core according to an illustrative embodiment; and
DDDR:: FIG. 19 illustrates a perspective view of an article of footwear having a central core according to an illustrative embodiment.
DHDD:: DETAILED DESCRIPTION OF THE ILLUSTRATIVE EMBODIMENT
DDDD:: In the following detailed description of the illustrative embodiments, reference is made to the accompanying drawings that form a part hereof, and in which is shown by way of illustration specific preferred embodiments in which the invention may be practiced. These embodiments are described in sufficient detail to enable those skilled in the art to practice the invention, and it is understood that other embodiments may be utilized and that logical structural, mechanical, electrical, and chemical changes may be made without departing from the spirit or scope of the invention. To avoid detail not necessary to enable those skilled in the art to practice the invention, the description may omit certain information known to those skilled in the art. The following detailed description is, therefore, not to be taken in a limiting sense, and the scope of the present invention is defined only by the appended claims.
DDDD:: As used herein, the term "elastomer" refers to a polymeric, rubber (natural or synthetic), or other material that has elongation rates greater than 100%.
DDDD:: The term "conformable" refers to the ability of a material to be shaped to the contours of a surface without permanently deforming or setting the material. The conformable material could be placed adjacent to a first surface to provide a contour fit to the first surface, and then could subsequently be placed adjacent a second surface and similarly provide a contour fit to the second surface.
DDDD:: Referring to FIG. 1, a protective guard 11 according to the principles of the present invention includes a conformable substrate 13 and a central core 15. The central core 15 is connected to or embedded within the conformable substrate 13 to provide impact protection to a body part of a person. In one embodiment, the conformable substrate 13 may include a pocket 19 (see FIG. 10) within the conformable substrate that houses the central core 15. When the central core 15 is contained within pocket 19, the conformable substrate 13 functions as a sheath, and an entry slot 21 may be optionally provided to allow access to pocket 19, thereby allowing the central core 13 to be selectively removed or inserted into the conformable substrate 13. However, in one embodiment, the pocket 19 is not accessible by an entry slot, thereby creating a sealed space for the conformable substrate 13. The pocket 19 closely matches the shape of the central core 13 and may be formed by molding the conformable substrate 13 around the central core 13.
DDDD:: The conformable substrate 13 may be constructed from an elastomeric material such that the conformable substrate 13 can be easily wrapped around and shaped to the contours of a person's lower leg or shin 61 (see FIG. 2). In one embodiment, the conformable substrate may be made from Monprene MP-1880, a thermoplastic elastomer manufactured by Teknor Apex, Thermoplastic Elastomer Division of Pawtucket, R.I. Other suitable materials may include without limitation other thermoplastic elastomers, ethylene vinyl acetate (EVA), natural rubber, polyisoprene, styrene butadiene rubber, chloroprene rubber, polybutadiene, nitrile rubber, butyl rubber, ethylene propylene rubber, ethylene propylene diene rubber, chlorosulfonated polyethylene, polysulfide rubber, silicone rubber, polyurethane, or open-cell neoprene, energy-absorbent or viscoelastic foam such as a memory foam, or any other conformable material.
DDDD:: Referring to FIG. 3, the central core 15 includes a plurality of plate members, or core members 31. In one embodiment, each core member is joined by at least one hinge 33 to another of the core members 31 such that the core members 31 are capable of rotational movement relative to one another. The rotational movement between two core members typically occurs along an axis that is positioned between the core members. When hinges 33 are used to connect the core members 31, the axis of rotation corresponds to the rotational axis of the hinge. Representative axes of rotation for the central core 15 of FIG. 3 are illustrated as axis 35a, axis 35b, and axis 35c. The ability of the core members 31 to rotationally move relative to one another allows the central core 15 to be conformable to a shin or other body part of a person even though the material that forms the core members 31 would not necessarily be conformable if used in a singe piece.
DDDD:: Referring more specifically to FIGS. 3-6, the core members may be any shape or size. In one embodiment, the core members 31 may be triangular in shape such as is illustrated in FIG. 3. In another embodiment, a central core 15a is partially shown in FIG. 4 having round core members 31a connected by hinges 33a. FIG. 5 partially illustrates a central core 15b having a plurality of oval core members 31b connected by hinges 33b. FIG. 5A partially illustrates a central core 15e having hexagonal core member 31e connected to hinges 33e. FIG. 6 partially illustrates a central core 15c having rectangular core members 31c connected by hinges 33c. Other shapes may include without limitation octagonal, other polygonal, or free-form shapes.
DDDD:: Referring to FIG. 7, the core members 31 of protective guard 11 are preferably substantially flat, rigid or semi-rigid plates constructed from a non-elastomeric material. In one embodiment, the core members 31 are made from a hard plastic material such as acrylonitrile butadiene styrene (ABS), styrene, polyethylene, polypropylene, acrylic, polyvinyl chloride (PVC), fluoroplastics, nylon, acetal, polycarbonate, polyimide, polyamide-imide, polyphenylene sulfide, polyarylates, polyethylene terephthalate, polybutylene terephthalate, polyether ether ketone, polysulfone, polyether sulfone, polyetherimide, or polyphenylene oxide. However, it should be understood that any substantially rigid material may be used, including composites, metal, ceramics, synthetic fiber materials such as KEVLAR(R), or wood. Although a non-elastomeric material is preferred, the core members 31 may even be formed from an elastomeric material if rotational movement between the core members 31 would allow the elastomeric material to better conform to the shin of a person. Preferably, the material used to form the core members 31, and thus the central core 15, is a material that is compatible with the material chosen for the conformable substrate 13. Since some embodiments involve molding the conformable substrate 13 over the central core 15, it is desirous to use a central core material to which the conformable substrate 13 will adhere. A coating or adhesive may be applied to the central core 15 prior to the molding process to achieve additional adhesion between the central core 15 and the conformable substrate 13.
DDDD:: Referring to FIG. 9, the central core 15c of FIG. 6 is illustrated in cross section and includes core members 31c connected by hinges 33c. While the core members may be substantially flat so that an impact force directed to the protective guard does not damage the conformable substrate, the core members 31c illustrated in FIG. 9 include ridges 41. The ridges 41 may be capable of absorbing additional energy by flattening in the presence of an impact force. Other alternatives to a substantially flat core member may be provided by a core member that is slightly concave or convex in cross section. The core members could alternatively be fluid-filled capsules such as those containing air or gel, or the core members may also be provided in a mesh configuration that is hinged together similar to chain mail armor.
DDDD:: Referring again to FIG. 7 and also to FIG. 8, the hinges that connect the core members may be provided in several different forms. In one embodiment illustrated in FIG. 7, the hinge 33 is a "living hinge." The living hinge is preferably integrally attached between the core members 31 and is made from the same material as each of the core members 31. The living hinge may be created by machining or etching the core members 31 from a single sheet of material having a relatively constant thickness. The sheet of material is thinned in any region that will become a hinge. This thinning process to create the hinges 33 also creates the general shape of the core members 31. Alternatively, the core members 31 and hinges 33 may be formed by molding or any other manufacturing process, including without limitation injection molding, compression molding, or transfer molding. Living hinges are a strong way of maintaining a rotational connection between core members 31. The living hinges 33 allow repeated rotations between core members 31 while maintaining the relative positions of the core members 31 during the process of assembling the central core 15 and the conformable substrate 13.
DDDD:: Referring to FIG. 8, another option for providing hinges is illustrated in reference to a central core 15d having core members 31d and hinges 33d. Hinges 33d are formed by arranging precut core members 31d onto a membrane or other material 51 that includes an adhesive or gel to secure the core members 31d to the membrane 51. The membrane 51 could be an adhesive tape or other film, a mesh material or alternatively the membrane could be another piece of plastic or elastomer to which the core members 31d are bonded. In still another embodiment, the membrane could be a thin layer of the material comprising the conformable substrate. Membrane 51 could be applied to both sides of the core members 31d or only on one side as shown in FIG. 8.
DDDD:: Although not illustrated, mechanical, multi-part hinges could also be used to connect adjacent core members.
DDDD:: Referring again to FIG. 3, certain of the core members are located in an outer perimeter region 37, while other of the core members are located in an inner region 39. The core members 31 located in the inner region 39 are preferably connected by hinges 33 along each edge of the core member 31 to each adjacent core member 31. For core members 31 located in the outer perimeter region 37, hinges 33 are only attached to one or two edges of each core member 31. However, regardless of whether a particular core member 31 is disposed within the outer perimeter region 37 or the inner region 39, it is not required that every edge of a core member 31 be connected by a hinge to another core member 31. In fact, hinges are not mandatory. Hinges simply provide a good way to maintain relative positioning of the core members 31 during assembly of the central core 15 and the conformable substrate 13. If the relative positioning of the core members 31 could be maintained without hinges, the fixation of the core members 31 within or to the conformable substrate 13 would allow the desired capability of rotational movement between adjacent core members 31. Alternatives for positioning the core members 31 are discussed below in reference to the assembly of the central core 15 and the conformable substrate 13.
DDDD:: Referring to FIG. 10, in one embodiment, the protective guard 11 includes core members 31 that are completely embedded within the conformable substrate 13. As mentioned previously, a pocket 19 could be provided with an entry slot that allows for insertion of the central core 15 after the conformable substrate 13 is formed. Alternatively, the central core 15 may be molded within the conformable substrate 13, which would automatically form a pocket 19 around the central core 15. It is preferred that hinges 33 are present between the core members 31 to maintain the relative position of the core members 31 during the molding process. It is possible, however, that the core members 31 be individually placed during the molding process to eliminate the need for the hinges 33. After the molding process, the relative positions (e.g. spacing) of the core members 31 would be fixed within the conformable substrate 13, yet the core members 31 would still be capable of rotational movement relative to one another.
DDDD:: Referring to FIG. 11, in another embodiment, a protective guard 111 having a conformable substrate 113 and a central core 115 is illustrated. The central core 115 includes a plurality of core members 131 connected by hinges 133. The central core 115 is partially embedded within a pocket 119 of the conformable substrate 113, thereby exposing the core members 131 near a surface of the conformable substrate 113. The central core 115 may be secured to the conformable substrate 113 by the embedding process, or a bonding agent or any other adhesive or gel may be used to further secure the central core 115. Alternatively, the central core 115 may be attached by sewing means, heat fastening means, ultrasonic fastening means, or any other fastening means. As discussed previously in reference to FIG. 10, the hinges 133 between core members 131 could be eliminated if the core members 131 were individually placed during the assembly process. Individual core members 131 could be placed during the molding of the conformable substrate 113, or the core members could be bonded within the pocket 119 of the conformable substrate 113 after the molding process is complete. After securing the core members 131 to the conformable substrate 113, the relative positions (e.g. spacing) of the core members 131 would be fixed, yet the core members 131 would still be capable of rotational movement relative to one another.
DDDD:: Referring to FIG. 12, in another embodiment, a protective guard 211 having a conformable substrate 213 and a central core 215 is illustrated. The central core 215 includes a plurality of core members 231 connected by hinges 233. In one embodiment, the central core 215 is bonded to a surface of the conformable substrate 213 by a bonding agent, adhesive, or gel. Alternatively, the central core 215 may be attached to the conformable substrate 213 by sewing means, heat fastening means, ultrasonic fastening means, or any other fastening means. As discussed previously with reference to FIGS. 10 and 11, the hinges 233 between core members 231 could be eliminated if the core members 231 were individually placed during the bonding process. After securing the core members 231 to the conformable substrate 213, the relative positions (e.g. spacing) of the core members would be fixed, yet the core members would still be capable of rotational movement relative to one another.
DDDD:: Referring to FIG. 13, a protective guard 311 according to another embodiment of the invention includes a conformable substrate 313, a central core 315, and a flexible membrane 317. The central core 315 includes a plurality of core members 331 connected by hinges 333. The central core 315 is at least partially embedded within a pocket 319 of the conformable substrate 313, and at least a portion of the central core 315 is covered by flexible membrane 317. While each of the conformable substrate 313, central core 315 and flexible membrane 317 (the three layers) may be adhesively bonded or otherwise attached to the other layers, some of the layers may not be attached to one another. For example, central core 315 may be placed on the conformable substrate 313 without attachment. The flexible membrane 317 may include an adhesive on one side that permits adherence of the flexible membrane 317 to both the central core 315 and the conformable substrate 313, thereby holding the central core 315 in place relative to the conformable substrate 313. Alternatively, the flexible membrane 317 may not be attached to the central core 315 but rather only to the conformable substrate 313. While the pocket 319 could be preformed in the conformable substrate 313 to receive the central core 315, the pocket 319 could instead be formed by an elastic deformation of the conformable substrate 313 in the presence of a compressive force applied by the flexible membrane 317 to the central core 315. If the layers of the protective guard 311 are attached, attachment may be accomplished by a bonding agent or any other adhesive or gel, sewing means, ultrasonic means, heat means, or any other fastening means. As discussed previously in reference to FIG. 10-12, the hinges 333 between core members 331 could be eliminated if the core members 331 were individually placed during the assembly process. Individual core members 331 could be placed during the molding of the conformable substrate 313, or the core members could be bonded within the pocket 319 of the conformable substrate 313 after the molding process is complete. Alternatively, the core members 331 (hinged or unhinged) could be attached to the flexible membrane 317 prior to securing the flexible membrane 317 to the conformable substrate.
DDDD:: Referring to FIG. 14, a protective guard 411 according to another embodiment of the invention includes a conformable substrate 413, a central core 415, and a flexible membrane 417. The layers of protective guard 411 and the methods of attachment are substantially the same as protective guard 311 described in FIG. 13, with the exception that the central core 415 is not embedded within a pocket of the conformable substrate 413. Instead, the central core 415 is attached to or positioned against an outer surface of the conformable substrate 413. The central core 415 is also similar to those previously described in that the central core 415 includes a plurality of core members 431 connected by hinges 433.
DDDD:: Referring to FIG. 15, a protective guard 511 according to another embodiment of the invention includes a conformable substrate 513, a plurality of core members 515, and a flexible membrane 517. In this embodiment, the core members 515 are not connected by hinges, but rather each core member is placed within a pocket 519 formed in the conformable substrate 513. The flexible membrane 517 is positioned over the conformable substrate 513 and the core members 515 to create a substantially flat impact surface. While each of the conformable substrate 513, the core members 515 and flexible membrane 517 (the three layers) may be adhesively bonded or otherwise attached to the other layers, some of the layers may not be attached to one another. For example, the core members 515 may be placed within the pockets 519 without attachment. The flexible membrane 517 may include an adhesive or gel on one side that permits adherence of the flexible membrane 517 to both the core members 515 and the conformable substrate 513, thereby holding the core members 515 in place relative to the conformable substrate 513. Alternatively, the flexible membrane 517 may not be attached to the core members 515 but rather only to the conformable substrate 513. While the pockets 519 could be preformed in the conformable substrate 513 to receive the core members 515, the pockets 519 could instead be formed by an elastic deformation of the conformable substrate 513 in the presence of a compressive force applied by the flexible membrane 517 to the core members 515. While the conformable substrate 513 is illustrated with multiple pockets 519 in FIG. 15, a single pocket may instead be provided to receive multiple core members 515. If the layers of the protective guard 511 are attached to one another, attachment may be accomplished by a bonding agent or any other adhesive or gel, sewing means, ultrasonic means, heat means, or any other fastening means.
DDDD:: Referring again to FIGS. 13-15, the flexible membrane 317, 417, and 517 may be any flexible material that is capable of being attached to either the conformable substrate or the central core. In one embodiment, the flexible membrane may be a flexible fabric made from natural fabrics including, without limitation, wool, cotton, silk, leather, or linen; or synthetic fibers including, without limitation, acetate, acrylic, latex, spandex, nylon, polyester, rayon; or blends of the above-mentioned fabrics; or any other material that includes natural and/or synthetic fibers that have been weaved, felted, knitted, crocheted, or otherwise arranged. The fabrics may be flame or fire retardant or resistant, such as for example, NOMEX(R).
DDDD:: It is important to note that the membranes, fabrics, conformable substrates, skeletal plates, core members, covers, and backings described herein may be bonded, layered, or connected in part or total to one another or may be layered but not bonded. While the illustrative embodiments described herein have been generally described as including single layers of each component (e.g., conformable substrate, core members, membranes) of the protective guard, any guard or other device incorporating these components may include multiple layers of one or more of the components. Furthermore, for a particular component that is provided in multiple layers, the multiple layers of the component may be arranged adjacent to one another, or may be arranged such that one or more layers of a different component is intermediately disposed between the multiple layers.
DDDD:: In use, the protective guard 11, 111, 211 of the present invention provides impact protection for an extremity or other body part of a person. As shown in FIG. 2, the protective guard 11 is conformable to the shin and lower leg 61 of a person. The conformable substrate 13 and the central core 15 combine to provide superior impact protection. While the conformable substrate 13 by itself is conformable to a leg or other body part, the more rigid characteristics of the material used in the central core 15 would normally not be easily conformable to the person's leg. However, by separating the central core 15 into a plurality of core members 31 and by allowing the core members 31 to be rotationally movable relative to one another, the central core 15 as a whole is also conformable to the leg of the person. The hinges 33 of the central core 15 provide additional impact resistance for point loads and impacts since the hinges are capable of transmitting impact forces to adjacent core members 31. An attachment aperture 65 is provided on each side of the conformable substrate 13 to allow protective guard 11 to be attached to the person's leg with a strap 67 routed through the attachment aperture 65. An ankle guard 71 may also be provided to wrap around the ankle of the person. The ankle guard 71 could include a central core, but preferably is formed solely from the conformable substrate used with protective guard 11, 111, 211. Similarly, the protective guard itself could be formed solely from the conformable substrate and used without the central core. If only the conformable substrate is used, the material may be thicker in areas of predicted impact or may be formed from two or more elastomers having different durometers (i.e. a multi-durometer conformable substrate).
DDDD:: Referring to FIGS. 16 and 17, a glove 611 having a central portion 615, a plurality of finger portions 619; a thumb portion 623, and a wrist portion 627 includes an opening 629 for insertion of a hand. In at least one of or all of the central portion 615, the plurality of finger portions 619, the thumb portion 623, and the wrist portion 627, a pocket 635 may be provided to receive a central core 639 having a plurality of core members connected by hinges as previously described herein. The core members and hinges allow multi-directional movement of the portions of the hand positioned adjacent the central core in each of the central portion 615, the plurality of finger portions 619, the thumb portion 623, and the wrist portion 627. The central core 639 may be a single article that is shaped to fit into multiple of the portions of the glove 611 containing a pocket. Alternatively, an individual central core 639 may be placed in each individual pocket 635 of the glove 611. When pockets are provided, the central core may be positioned within, embedded, partially-embedded, free-floating, adhesively secured, bonded, sewn or otherwise attached as previously described herein. In another embodiment, the pockets 635 of the glove 611 may be eliminated, and the central core 639 or multiple central cores 639 may be secured to an exterior or interior surface of the glove in the region of the central portion 615, the plurality of finger portions 619, the thumb portion 623, and/or the wrist portion 627. As previously described with respect to the flexible membranes of FIGS. 13-15, a flexible membrane may be positioned over the central core 639 to assist in joining the central core 639 to the glove material.
DDDD:: The glove 611 may be used for protection from impact and other potentially detrimental forces encountered in any sports or other activity. For example, inclusion of a central core 639 in the central portion 615 and finger portions 619 over the back of the hand may be desirable for baseball gloves to protect batters from impact by a baseball. A central core 639 may be positioned over the palm of the hand in the central portion 615 to protect motorcyclists, bicyclists, and skaters from impact and abrasive frictional forces that may be caused when the hands are used to cushion an impact with the ground.
DDDD:: Referring to FIGS. 17 and 18, an article of footwear, such as for example a work boot 711 or a hockey skate 811, includes a toe portion 715, a heel portion 719, a tongue portion 725, an outsole 729, and an insole (not shown). In at least one of or all of the toe portion 715, the heel portion 719, the tongue portion 725, the outsole 729, and the insole, a pocket 735 may be provided to receive a central core 739 having a plurality of core members connected by hinges as previously described herein. The core members and hinges allow multi-directional movement (i.e., rotational movement about more than one axis) of the portions of the foot positioned adjacent the central core in each of the toe portion 715, the heel portion 719, the tongue portion 725, the outsole 729, and the insole. The central core 639 may be a single article that is shaped to fit into multiple of the portions of the footwear 711, 811 containing a pocket. Alternatively, an individual central core 739 may be placed in each individual pocket 735 of the footwear 711, 811. When pockets are provided, the central core may be positioned within, embedded, partially-embedded, free-floating, adhesively secured, bonded, sewn or otherwise attached as previously described herein. In another embodiment, the pockets 735 of the footwear 11 may be eliminated, and the central core 739 or multiple central cores 739 may be secured to an exterior or interior surface of the footware in the region of the toe portion 715, the heel portion 719, the tongue portion 725, the outsole 729, and/or the insole. As previously described with respect to the flexible membranes of FIGS. 13-15, a flexible membrane may be positioned over the central core 739 to assist in joining the central core 739 to the footwear material.
DDDD:: The footwear 711 may be used for protection from impact and other potentially detrimental forces encountered in any sports or other activity. For example, inclusion of a central core 739 in the tongue portion 725 of the hockey skate 811 provides significant protection to goalies from hockey-puck impacts. Similarly, a central core 639 may be positioned in the toe portion 715 or heel portion 719 of the work boot 711 to protect against impacts received in industrial or other work-related settings.
DDDD:: It should be noted that the protective guards described herein may be used to protect body parts other than the lower legs, hands, or feet of a person including without limitation the torso, back, forearms, wrists, elbows, thighs, knees, shoulders, chest, face, head, and other extremities. In one example, the central core or protective guard may be combined with helmets or other headwear to protect the head from impact. Body parts may also be protected by combining a central core such as that described herein with clothing, either by sewing the central core to the clothing, within a pocket of the clothing, or by otherwise attaching the central core to the clothing. For example, the central core or protective guard may be combined with shirts, jackets, shorts, pants, hats or other articles of clothing.
DDDD:: The protective guards described herein may also be used to protect body parts of non-human animals as well, or alternatively, non-living articles or equipment. For example, the central cores may be attached or incorporated as described herein to luggage, briefcases, computer travel bags, gun cases, or other bags and storage containers to protect the contents therein. In another example, the central core or protective guard may be attached to or incorporated within athletic flooring, subflooring, or ground covering to provide support and impact resistance. The central cores may be attached to or incorporated into the fabric of clothing to protect various areas of human or other animal bodies. While the protective guards and central cores described herein are often presented as being incorporated into sports and work-related equipment, it should be recognized that the use of these elements may be expanded beyond these particular uses. For example, one or more central cores may be attached to or incorporated into various medical devices such as splints and casts. The inclusion of the central core in these devices would provide additional protection against impact and other forces for the body parts to which the splints and casts are applied. One non-medical example may include attachment or incorporation of one or more central cores to an airplane seat, a car seat, or other seat to create a support frame that prevents impression in the foam or other substrate underlying or overlying the core member. The central core may also protect a user of the seat against impact and other forces. Similarly, the central core could be combined with bed mattresses or other bedding materials to provide support and to prevent impressions in the bedding. As can be seen from the preceding examples, the application of the protective guards and central cores described herein are not limited and may include any application where it is desired to protect humans, animals, or non-living articles or equipment from impact and other forces.
DDDD:: In one additional example, the protective guards described herein may be used to protect hips and other body parts from impact during falls. Hip fractures and other broken bones due to falls result in serious injuries and medical complications for many elderly people. Attachment of the protective guard over a person's hip may help prevent some of these injuries. In one example, a flexible material, such as a surgical tape with an adhesive backing, may be applied to the skin of a patient adjacent the hip. On an outward facing side of the flexible material, one component of a hook-and-loop material may be positioned. A protective guard having a central core such as those described herein may be removably attached to the flexible material using another component of the hook-and-look material that is positioned on the protective guard. The protective guard may be easily replaced, repositioned, or removed for the comfort and safety of the patient. While the protective guard may include both a conformable substrate and a central core, in one embodiment, the central core may be attached to the flexible material or directly to the patient without the use of a conformable substrate. While attachment has been described as using complementary hook-and-loop type material, any fastening means may be used including, without limitation, adhesives, sewing, or other suitable attachment means.
DDDD:: It should be apparent from the foregoing that an invention having significant advantages has been provided. While the invention is shown in only a few of its forms, it is not just limited but is susceptible to various changes and modifications without departing from the spirit thereof.
CLI :: 1. A shin guard for protecting a shin of a person comprising: an elastomeric substrate; a central core having a plurality of rigid plates disposed on or adjacent to the elastomeric substrate, a first edge of a first one of the plurality of plates being hingedly attached to another plate in the plurality of plates substantially adjacent to the first one of the plurality of plates, wherein each hingedly attached edge of the first one of the plurality of plates joins less than the entire respective hingedly attached edge to an edge of a corresponding other substantially adjacent plate in the plurality of plates; and a flexible fabric membrane comprised of natural or synthetic fibers positioned adjacent to at least one of the elastomeric substrate and the central core.
CLD :: 2. The shin guard according to claim 1, wherein each of the plates is joined by at least one hinge to another of the plates.
CLD :: 3. The shin guard according to claim 2, wherein the joining of the plates allows multidirectional rotation of the central core such that the central core, the elastomeric substrate, and the flexible fabric material are conformable to the shin of the person.
CLD :: 4. The shin guard according to claim 1, wherein: a pocket is disposed on a surface of the elastomeric substrate; and the central core is at least partially embedded within the pocket.
CLD :: 5. The shin guard according to claim 4, wherein: the pocket is accessible through an entry slot to allow insertion and removal of the central core; and the central core is fully embedded within the pocket such that a substantially flat impact surface is created when the fabric is adjacent to the at least one of the elastomeric substrates and the central core.
CLD :: 6. The shin guard according to claim 1, wherein the first edge of the first one of the plurality of plates is hingedly attached to another plate in the plurality of plates by a hinge and the hinge is a living hinge formed from the same material as the rigid plates.
CLD :: 7. The shin guard according to claim 1, wherein the first plate is hingedly attached to the other plate by a hinge bonded to the first and other plates.
CLD :: 8. The shin guard according to claim 7, wherein the hinge comprises a membrane having adhesive disposed on at least one surface of the membrane.
CLD :: 9. The shin guard according to claim 1, wherein the plates are hexagonal in shape.
CLD :: 10. The shin guard according to claim 9, wherein: some of the rigid plates are disposed in an outer perimeter region and others of the rigid plates are disposed in an inner region; and each of the rigid plates in the inner region is hingedly attached on each of six edges to an adjacent rigid plate.
CLD :: 11. The shin guard according to claim 1, wherein the fabric is adhesively bonded to at least one of the elastomeric substrates and the central core.
CLI :: 12. A protective guard for protecting a person comprising: a conformable substrate; a plurality of rigid core members disposed adjacent to a surface of the conformable substrate, a first edge of a first one of the plurality of members being hingedly attached to another member in the plurality of members substantially adjacent to the first one of the plurality of plates, wherein each hingedly attached edge of the first one of the plurality of members joins less than the entire respective hingedly attached edge to an edge of a corresponding other substantially adjacent member in the plurality of members, and the plurality of rigid core members are arranged such that the first of the core members is rotationally movable about at least one axis relative to other substantially adjacent members in the plurality of members; and a flexible fabric membrane comprised of natural or synthetic fibers positioned adjacent to at least one of the conformable substrate and the plurality of core members.
CLD :: 13. The protective guard according to claim 12, wherein the core members are arranged such that the core members, as a whole, are conformable to the shin of the person.
CLD :: 14. The protective guard according to claim 12, wherein core members are bonded to the conformable substrate.
CLD :: 15. The shin guard of claim 1, wherein the elastomeric substrate is a foam substrate.
CLD :: 16. The protective guard of claim 12, wherein the conformable substrate is adapted to at least partially absorb an impact force.
ENDRECORD
TITL:: Nursing cover
DTYP:: pat
ATYP:: utility
PTNO:: 08661565
ISDT:: 20140304
APNO:: 13346664
APDT:: 20120109
PBNO::
PBDT::
AGAP:: 785
AGPB::
AGAL:: 2773
INVS:: EKELUND RONNIE MICHAEL|EKELUND CLAIRE RACHAEL JANE
APLS:: EKELUND RONNIE MICHAEL|EKELUND CLAIRE RACHAEL JANE
LREP:: BLAKELY, SOKOLOFF, TAYLOR & ZAFMAN LLP|SZEPESI JUDITH A.
ASSE:: BEBE AU LAIT, LLC
EXMR:: HALE GLORIA
NCLS:: 18
NCLI:: 3
NCLD:: 15
NFIG:: 9
DSCL:: 5115
SUML:: 0
BKGL:: 345
DDRL:: 252
DDSL:: 5172
CLFL:: 141
CLIL:: 142
CLDL:: 131
NREF:: 63
NRFA:: 24
NRFX:: 39
IPCC:: A-A-41-D-1-20-F-I|A-A-41-B-13-00-L-N
USCC:: 2104| 2 46| 2 491|| 2261| 22601| 2260| 22601| 2264| 2257|427261| 2115| 2256|450 57|450 52|450 41|450 52|450 52| 29447| 2421| 2104| 2104| 2104| 2 48|450 86|602 19| 2 48|442244|450 41| 2 48|450 92|4273899|450 19|450 75| 2 52|450 39|604416|450 39|450 39|450 39|450 92|450 39|442328| 2 46|| 2 491- 494| 2 48|| 2 50- 52| 2104-106| 2113-115| 2338|| 2336|| 2255-261
SFLD:: 2 46| 2 491- 494| 2 48| 2 50- 52| 2104-106| 2113-115| 2338| 2336| 2255-261
RLDX:: CON:12146152:20080625:13346664|CIP:11507891:20060821:12146152|CIP:11497109:20060731:11507891|XXX:20120102617:20120503
NRLD:: 4
NPRV:: 0
NPCT:: 0
ABST:: Examples of a nursing cover are described, including a cover having a top edge and a stiffener comprised of a shape memory material having a material memory coupled to the cover using a securing mechanism to prevent the stiffener from rotating. In one embodiment, the material memory causes the stiffener to assume a pre-determined shape, to temporarily deform without breaking the stiffener when force is applied to the stiffener, and to reassume the pre-determined shape. In one embodiment, an end of the stiffener provides a substantially smooth surface to prevent abrasion.
DHXX:: RELATED APPLICATIONS
DDXX:: The present application is a continuation of U.S. application Ser. No. 12/146,152, filed on Jun. 25, 2008, now U.S. Pat. No. 8,091,145, issued on Jan. 10, 2012, which is a continuation-in-part of U.S. patent application Ser. No. 11/507,891, filed Aug. 21, 2006 entitled "Nursing Cover," now U.S. Pat. No. 7,406,718, issued on Aug. 5, 2008, which is a continuation-in-part of U.S. patent application Ser. No. 11/497,109, filed Jul. 31, 2006 entitled "Nursing Cover," now U.S. Pat. No. 7,409,727, issued on Aug. 12, 2008, which are all incorporated herein by reference for all purposes. The present application is further related to application Ser. No. 12/143,110, filed Jun. 20, 2008, entitled "Nursing Cover," now U.S. Pat. No. 7,805,770. The present application is further related to application Ser. No. 12/143,140, filed Jun. 20, 2008, entitled "Nursing Cover," now U.S. Pat. No. 7,805,771. The present application is further related to application Ser. No. 12/848,041, filed Jul. 30, 2010, entitled "Nursing Cover," currently pending and allowed. The present application is further related to application Ser. No. 12/848,085, filed Jul. 30, 2010, entitled "Nursing Cover," currently pending and allowed.
DHXX:: FIELD OF THE INVENTION
DDXX:: The present invention relates to a cover, and more specifically to a nursing cover.
DHBK:: BACKGROUND
DDBK:: Newborn babies are often breastfed by mothers, which can be an intimate and personal bonding experience between mothers and their babies. When breastfeeding, a mother typically exposes the upper portions of her torso, which may make her uncomfortable if located in a public or highly trafficked area. Conventional solutions for covering exposed areas (e.g., upper torso, breasts, and the like) of a nursing mother have several limitations and are often bulky, uncomfortable, unsafe, or difficult to handle.
DDBK:: In some conventional solutions, large towels or small sheets are used, which are bulky and typically made of heavy, non-breathable material. These types of materials are often too warm to wear, increasing the body temperature of the mother and the baby, resulting in difficult or uncomfortable breastfeeding. Further, heavy, bulky, or non-breathable materials may also pose a risk of asphyxiation or cause overheating with a nursing baby.
DDBK:: Conventional nursing covers are also problematic because they are difficult to wear or secure when worn. Draping or placing a cover, wrap, or sheet over a mother's shoulder to cover the nursing newborn often blocks visibility of the baby. Further, baby movement may cause the cover, wrap, or sheet to slip in position or completely fall off. With conventional techniques, visibility between a mother and her newborn are obscured, preventing the former from observing or monitoring the latter during breastfeeding. Positioning, latching, and other factors can be inhibited or detrimentally affected by conventional covers, wraps, and sheets. Further, mothers are physically restricted in their ability to manage these factors while securing and maintaining a conventional cover, wrap, or sheet in place.
DDBK:: Thus, what is required is a solution for covering a baby while nursing without the limitations of conventional techniques.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: The present invention will be readily understood by the following detailed description in conjunction with the accompanying drawings, and like reference numerals designate like structural elements.
DDDR:: FIG. 1 illustrates a front view of an exemplary nursing cover;
DDDR:: FIG. 2A illustrates a rear view of an exemplary nursing cover;
DDDR:: FIG. 2B illustrates a rear view of an alternative exemplary nursing cover;
DDDR:: FIG. 3 illustrates an alternative frontal view of an exemplary nursing cover when worn;
DDDR:: FIG. 4A illustrates an exemplary stiffener;
DDDR:: FIG. 4B illustrates an exemplary end cap;
DDDR:: FIG. 4C illustrates an exemplary stiffener and end cap;
DDDR:: FIG. 5A illustrates an alternative frontal view of an exemplary nursing cover when worn; and
DDDR:: FIG. 5B illustrates an alternative frontal view of an exemplary nursing cover when worn.
DHDD:: DETAILED DESCRIPTION
DDDD:: Embodiments or examples of the invention may be implemented in numerous ways, including as an apparatus, system, or process. A detailed description of one or more examples is provided below along with accompanying figures. The detailed description is provided in connection with such examples, but is not limited to any particular example. The scope is limited by the claims, but numerous alternatives, modifications, and equivalents are encompassed. Numerous specific details are set forth in the following description in order to provide a thorough understanding. These details are provided for the purpose of example and the descriptions provided may be used for implementation according to the claims without some or all of these specific details. For the purpose of clarity, technical material that is known in the technical fields related to the examples has not been described in detail to avoid unnecessarily obscuring the description.
DDDD:: A nursing cover is described, including a cover, wrap, fabric, or sheet ("sheet") having a stiffener sewn or stitched ("stitched") into an edge, which allows positional securing without inhibiting visibility. Further, end caps provided at each end of the stiffener provides reinforced protection to avoid abrasion between the stiffener and a stitched pocket in which the stiffener is placed. When worn, a nursing cover covers a breastfeeding baby, a mother's exposed torso, while providing a window for the mother to observe or monitor the baby. A nursing cover, as described in greater detail below, may also protect a baby from other environment factors such as sun, wind, rain, and the like. In some examples, a nursing cover as described below may be used to shield a baby who is not nursing, but instead being carried in a sling or cradle such as a Baby Bjorn(R) or the like. In other words, a nursing cover as described in the various examples below, may be used to protect a mother and her child from various types of natural and manmade environmental factors and conditions. Various alternative implementations and modifications to the examples provided may be used and are not limited to the descriptions, dimensions, or other exemplary details provided herein.
DDDD:: FIG. 1 illustrates a front view of an exemplary nursing cover. Here, nursing cover 100 includes sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128-130 and one or more D-rings 132. In some examples, D-ring strap 104 may be implemented with one or more D-rings 132, which are used to secure strap 102. Strap 102 may be secured by tying, slipping, knotting, or otherwise coupling, directly or indirectly, to D-ring strap 104. In other examples, D-ring strap 104 may be implemented with other types of securing rings or brackets, including O-rings, H-brackets, and the like. Nursing cover 100 also includes stiffener pocket 134 and pocket stitches 136-138. Pocket 134 may be used to hold a stiffener, which is described in greater detail below in connection with FIGS. 4A-4C.
DDDD:: Referring back to FIG. 1, a stiffener may be a length of material that, when placed within stiffener pocket 134, extends outward from the wearer of nursing cover 100. A stiffener may be a flexible, but semi-rigid strip or length of material that "bows outwards" from a top edge of sheet 101. When bowed, the stiffener holds the top edge of sheet 101 away from the wearer, thus providing an opening or aperture for maintaining visibility between the wearer and a baby underneath. Stiffeners may be made of natural or synthetic materials, including wood, plastic, nylon, metal, composite, or others. Further, a stiffener may be formed with a radius of curvature that allows a top edge of sheet 101 to extend away from the plane of sheet 101 when secured in a resting position. In other words, a stiffener may have a material memory that provides a curving shape that persists without requiring the exertion of force or pressure to achieve the curvature.
DDDD:: In some examples, sheet 101 may be implemented using any type of fabric made from natural or synthetic fibers, including cotton, wool, silk, denim, polyester, nylon, and various types of blends. Further, various types of designs may be placed on sheet 101 using any type of technique such as silk-screening, embroidery, or forming patterns or designs within the weave of the fabric. Other types of fabrics and designs may be used and nursing cover 100 is not limited to the examples provided. Regardless of the type of material used for sheet 101, nursing cover 100 may be placed to cover the upper torso of a nursing mother to provide an intimate and non-observable nursing experience for the baby and the mother. Further, a stiffener placed within stiffener pocket 134 and bounded by pocket stitches 136-138 may be used to provide a full or partially hemispherical support that projects outward from nursing cover 100 on a plane that is substantially orthogonal to vertical axis 140. In other words, if nursing cover 100 is worn in an upright position by a mother, a stiffener (not shown) in stiffener pocket 134 may extend a center portion of the top edge outwards and away from the mother. The mother's upper torso remains covered, a nursing baby is shielded from external view, and sheet 101 provides non-transparent protection from unwanted viewing while nursing. Nursing cover 100 may be implemented differently than described above and is not limited to the examples provided.
DDDD:: FIG. 2A illustrates a rear view of an exemplary nursing cover. Here, nursing cover 200 also includes sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128-130 and one or more D-rings 132. Stiffener pocket 134 is also provided, being bounded by pocket stitches 136-138 and upper top edge stitch 106 and lower top edge stitch 108. A pocket may be provided by using pocket fabric 202, which may be stitched into a corner of sheet 101. Pocket fabric 202 may be stitched into place by right edge stitch 112 and bottom edge stitch 114. A diagonal edge of pocket fabric 202 extending from right edge stitch 112 to bottom edge stitch 114 may also be stitched, but with an unstitched portion left open between pocket stitch 116 and 120, thus creating a pocket for the wearer to retrieve and store items. Pocket stitches 116-120 provide edges for a pocket, which may be used to hold various items for a nursing mother, including a bottle, burp cloth, wipes, pacifier, baby clothing, nursing implements, and the like. Further, the placement of a pocket bounded by pocket stitches 116-120 using pocket fabric 202 on the rear or "inside" surface of nursing cover 200 allows a nursing mother to retrieve or store items such as those described above. In other embodiments, pocket fabric 202 may be implemented differently and is not limited to the example shown.
DDDD:: FIG. 2B illustrates a rear view of an alternative exemplary nursing cover. Here, nursing cover 210 is shown, also including sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128130 and one or more D-rings 132. Stiffener pocket 134 is also provided, being bounded by pocket stitches 136-138 and upper top edge stitch 106 and lower top edge stitch 108. Alternatively, pocket fabric 212 and pocket stitches 214-218 are shown, which provide a different-type of pocket from that shown and described above in connection with FIG. 2A. In some examples, pocket fabric 212 may be formed using the same or a different type of material as sheet 101. For example, terry cloth material may be used for pocket fabric 212, which provides a soft material that minimize abrasion with exposed skin of a wearer (i.e., a nursing mother). In other examples, different types of materials may be used for pocket fabric 212 to form a pocket. Further, pocket fabric 212 may be located in a different area or on the outside of sheet 101. For example, pocket fabric 212 may be located in the inside of sheet 101, but on a different corner to accommodate left or right-handed mothers. Further, different sizes of pocket fabrics 212 may be stitched into sheet 101, providing smaller or larger sized pockets for holding items of various sizes. In some examples, pocket fabric 212 may be configured to provide a secure pocket, closed using a clasp or other item that allows the wearer to place items in a secure location while nursing.
DDDD:: Here, pocket 212 provides a pocket with an opening that is horizontally configured, lying in a plane that is orthogonal to vertical axis 140. Bounded by pocket stitches 214-218 and left open across the top edge of pocket fabric 212, a pocket is formed that allows the wearer to store and retrieve items such as those described above in connection with FIG. 2A. In other examples, different types of pockets may be implemented and are not limited to the examples shown and described. Numerous other shapes, sizes, fabric types, and locations may be used with pocket fabric 212 and nursing cover 210 is not limited to the pocket examples shown and provided above. Further, nursing cover 210 and the elements described may be varied and are not limited to the examples provided above.
DDDD:: FIG. 3 illustrates an alternative frontal view of an exemplary nursing cover when worn. Here, nursing cover 300 is shown, including sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128-130 and one or more D-rings 132. Stiffener pocket 134 is also provided, being bounded by pocket stitches 136-138 and upper top edge stitch 106 and lower top edge stitch 108. In some examples, strap 102 may be secured to D-ring strap 104 using a knot or by running strap 102 between D-rings 132, as shown with strap section 302. In some examples, strap 102 may be threaded through D-rings 132, which are secured and taut when tension is applied to either tapered edge 126 or strap 102. Strap 102 may be adjusted in length using D-rings 132 to accommodate a wearer with broad or narrow shoulders, a thick or thin neck, or to compensate for a desired area of coverage provided by nursing cover 300. In other examples, nursing cover 300 may be secured differently and is not limited to the examples shown and described.
DDDD:: When worn, nursing cover 300 provides shade and protection from unwanted observers for a nursing mother and her child. Strap 102, when secured to D-ring strap 104 using D-rings 132, falls or drapes over a nursing child underneath. A stiffener in stiffener pocket 134 extends nursing cover 300 away from the neck and upper torso of the mother and provides a pocket in which the baby rests and remains visible to the mother. Further, a mother may also wear nursing cover 300 as a sunshade to protect a baby underneath, who may be carried in the mother's arms while nursing, cradled in a sling (e.g., Baby Bjorn(R)), or otherwise held in a position that may warrant protection from observation, sun, weather, wind, or other environmental factors that may affect the baby.
DDDD:: FIG. 4A illustrates an exemplary stiffener. Here, stiffener 402 is shown with edges 404-406. In some examples, stiffener 402 may be formed using natural materials such as wood, bamboo, and others. In other examples, stiffener 402 may be formed using synthetic materials such as plastic, nylon, steel, metal, composites (e.g., Teflon(R), Kevlar(R), and others). Materials used for stiffener 402 may be durable, light, waterproof or water-resistant, and formed to prevent moisture accumulation or mildew when placed within stiffener pocket 134 (FIGS. 1, 2A-2B, 3). Stiffener 402 may be formed from any material that, when placed within pocket 134, provides a bent or semi-hemispherical shape that is used to bow the upper edge of nursing cover 100 (FIGS. 1, 2A-2B, 3) outward from the wearer. In some examples the degree of bend (i.e., radius of curvature) may be adjusted or customized for different wearers, depending upon the amount of visibility desired. In other words, if a larger area of visibility is desired, stiffener 402 may be formed using a greater length and radius of curvature. When formed, stiffener 402 retains a bent or curved shape when in a resting position. Further, when force is applied to bend or curve stiffener 402 in the opposite direction of a formed curve, stiffener 402 may be formed of materials that allow bending without breaking. Here, edges 404-406 may expose individual fibers or strands of material within stiffener 402. When placed in contact with sheet 101 (i.e., when placed within pocket 134), edges 404-406 may abrade against the fabric of sheet 101, resulting in tears or cuts in sheet 101, as well as causing stiffener 402 to slip out of place. By placing end caps (as described below in greater detail in connection with FIGS. 4B-4C) on stiffener 402, abrasion and cutting may be prevented or minimized, resulting in the continuing ability of nursing cover 100 to bend outward along its upper edge away from the wearer. In other examples, stiffener 402 may be formed of different materials with different properties and material characteristics other than those described above.
DDDD:: FIG. 4B illustrates an exemplary end cap. Here, end cap 412 is shown with opening 414 and port 416. In some examples, stiffener 402 (FIG. 4A) may be placed into opening 414 and inserted until contact is made with the inside surface of the opposing side of end cap 412. End cap 412 may be positioned over edges 404-406, providing a non-abrading, substantially smooth surface that, when placed within pocket 134 (FIG. 1) of nursing cover 100, prevents tears or cuts in sheet 101. Further, end cap 412 may be used to also prevent edges 404-406 from tearing or cutting through pocket 134 and pressing into exposed skin surfaces of the wearer, which may cause pain, injury, or both. Further, end cap 412 may also provide protection to a baby protected underneath by preventing rough edges of stiffener 402 from pressing into the skin, eyes, or extremities of a child. Port 416 provides a window or aperture for viewing within end cap 412. Port 416 may be used to determine whether stiffener 402 has been fully or partially inserted into end cap 412. In some examples, port 416 may also be used to relieve overpressure within end cap 412 if the outer edges of stiffener 402 provide a seal by contacting the inner surfaces of opening 414. In some examples, the shape of end cap 412 is formed to provide smooth, rounded surfaces to prevent abrading, tearing, or cutting into sheet 101. In other examples, different shapes and sizes may be used for end cap 412 and are not limited to the examples shown above. For example, a rounded or hemispherical shape may be used for end cap 412. In other examples, a square or substantially rectangular shape may be used for end cap 412, providing a secure and substantially smooth surface that does not catch, abrade, tear, or cut the inner lining or surface of pocket 134. End cap 412 may be implemented differently in design, shape, and dimension. Other examples may be used and are not limited to the examples shown and described.
DDDD:: FIG. 4C illustrates an exemplary stiffener and end cap. Here, a cross sectional area of stiffener 402 is shown and end cap 412 is placed over edges 404. In some examples, end cap 412 may be placed over edges 404 to protect fabric (i.e., sheet 101 (FIG. 1)) from abrasion, tears, or cuts that may be caused by the rough surfaces of stiffener 402 and edges 404. Edges 404 may be created when stiffener 402 is cut from an overall longer length of material. Here, stiffener 402 may be inserted into end cap 412 and fully positioned when edges 404 are seen within port 416. In some examples, edges 404 may be fully inserted into end cap 412, which provides a smooth end surface that does not abrade, cut, or tear the fabric of sheet 101 and pocket 134. In other examples, edges 404 may be partially inserted into end cap 412 and the extent of insertion may be controlled by viewing how far stiffener 402 has advanced into end cap 412 using port 416. In other examples, end cap 412 may be formed as part of stiffener 402, thus omitting edges 404 and providing a smooth, integrated surface that prevents abrasion, tearing, or cutting of sheet 101. In still other examples, end cap 412 may be inserted over or onto stiffener 402 differently and is not limited to the examples shown and described.
DDDD:: In some examples, end cap 412 and stiffener 402 may be formed, connected, glued, sewn, stitched, or otherwise coupled (i.e., directly or indirectly) together. For example, end cap 412 and stiffener 402 may be sewn together by using thread, string, or other synthetic or natural fibers to secure end cap 412 to stiffener 402. Synthetic or natural fibers (not shown) may be threaded through port 416 on a side of end cap 412, through the material of stiffener 402, and out through another port located on an opposing side of end cap 412. Synthetic, natural, or other connective materials used to couple end cap 412 to stiffener 402, may be comprised of any type of synthetic or natural material to provide a memory shape such as that described above. As another example, end cap 412 may be coupled to stiffener 402, but melted together by applying heat, solvents, or other materials that may result in the fusion, materially or molecularly, of end cap 412 with stiffener 402. Likewise, various types of glues and adhesive materials may also be applied to couple end cap 412 to stiffener 402. Further, stiffener 402 may be formed with end cap 412 disposed at both ends. In other words, end cap 412 may be formed as part of stiffener 402 using the same or different material. As yet another example, different a connector may be used to couple end cap 412 to stiffener 402.
DDDD:: In some examples, a connector may be a "plug," "bar," or rail comprised of any type of natural or synthetic fiber that may be pressed through end cap 412 and stiffener 402 to secure both end cap 412 and stiffener 402 together. A connector may also be any type of intermediary material used to mechanically or structurally couple end cap 412 to stiffener 402. Stiffener 402 and end caps 412 may be formed as a single, monolithic piece or by using multiple, different pieces coupled using techniques such as those described above. Further, any type of technique for coupling stiffener 402 and end caps 412 may be used and are not limited to the examples provided above. Other types and techniques for securing end cap 412 to stiffener 402 may be used and are not limited to the above-described examples.
DDDD:: FIG. 5A illustrates an alternative frontal view of an exemplary nursing cover when worn. Here, nursing cover 500 is shown, including sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128-130 and one or more D-rings 132. Stiffener pocket 134 is also provided, being bounded by pocket stitches 136-138, upper top edge stitch 106 and lower top edge stitch 108. Stiffener pocket 134 may further include stiffener stitches 502-504, which may be provided to couple a stiffener (e.g., stiffener 402 (FIGS. 4A-4C) to sheet 101. In some examples, stiffener stitches 502-504 may be implemented using various lengths, thicknesses, diameters, or materials, without limitation. In other examples, stiffener stitches 502-504 may fully or partially span the width or length of stiffener 402. In still other examples, stiffener stitches 502-504 may be provided vertically, horizontally, off-angled, or otherwise. When worn, nursing cover 500 provides shade and protection from unwanted observers for a nursing mother and her child. Stiffener 402 in stiffener pocket 134 extends nursing cover 500 away from the neck and upper torso of the mother and provides a pocket in which the baby rests and remains visible to the mother.
DDDD:: In some examples, stiffener 402 and sheet 101 may be connected, glued, sewn, stitched, or otherwise coupled (i.e., directly or indirectly) together to prevent movement of stiffener 402 in stiffener pocket 134. In some examples, stiffener stitches 502-504 may be stitched, sewn into, or otherwise coupled (i.e., directly or indirectly) to sheet 101 and may be used to secure stiffener 402 in stiffener pocket 134 to sheet 101 or prevent lateral or rotational movement of stiffener 402 within stiffener pocket 134. In other examples, stiffener stitches 502-504 may be configured differently and are not limited to the descriptions provided.
DDDD:: As shown here, stiffener stitches 502-504 may be located between pocket stitches 136-138 and may be stitched or sewn substantially parallel to vertical axis 140. In other examples, stiffener stitches 502-504 may be located anywhere along stiffener pocket 134 and may be stitched in any angle relative to vertical axis 140 and are not limited to the location and configuration as shown and described. In some examples, stiffener stitches 502-504 may be stitched or sewn through sheet 101 and through the material of stiffener 402 using any synthetic, natural, or other connective materials. For example, stiffener stitches 502-504 may comprise thread, string, or other synthetic or natural fibers. In other examples, stiffener stitches 502-504 may comprise other materials and are not limited to the examples provided above.
DDDD:: In some examples, various types of glues and adhesive materials may also be applied to secure stiffener 402 to sheet 101. Other types and techniques for securing stiffener 402 to sheet 101 may be used and are not limited to the above-described examples.
DDDD:: FIG. 5B illustrates an alternative frontal view of an exemplary nursing cover when worn. Here, nursing cover 500 is shown, including sheet 101, strap 102, D-ring strap 104, upper top edge stitch 106, lower top edge stitch 108, left edge stitch 110, right edge stitch 112, bottom edge stitch 114, and pocket stitches 116-120. Strap 102 further includes side stitches 122-124 and tapered edge 126. D-ring strap 104 also includes side stitches 128-130 and one or more D-rings 132. Stiffener pocket 134 is also provided, being bounded by pocket stitches 136-138, upper top edge stitch 106 and lower top edge stitch 108. Stiffener pocket 134 may further include stiffener stitches 506-508, which may be provided to couple a stiffener (e.g., stiffener 402 (FIGS. 4A-4C) to sheet 101. In some examples, stiffener stitches 506-508 may be implemented using various lengths, thicknesses, diameters, or materials, without limitation. In other examples, stiffener stitches 506-508 may fully or partially span the width or length of stiffener 402. In still other examples, stiffener stitches 506-508 may be provided vertically, horizontally, off-angled, or otherwise. When worn, nursing cover 500 provides shade and protection from unwanted observers for a nursing mother and her child. Stiffener 402 in stiffener pocket 134 extends nursing cover 500 away from the neck and upper torso of the mother and provides a pocket in which the baby rests and remains visible to the mother.
DDDD:: In some examples, stiffener 402 and sheet 101 may be connected, glued, sewn, stitched, or otherwise coupled (i.e., directly or indirectly) together to prevent movement of stiffener 402 in stiffener pocket 134. In some examples, stiffener stitches 506-508 may be stitched or sewn into sheet 101 and may be used to secure stiffener 402 in stiffener pocket 134 to sheet 101 or prevent lateral or rotational movement of stiffener 402 within stiffener pocket 134. In other examples, stiffener stitches 506-508 may be configured differently and are not limited to the descriptions provided.
DDDD:: As shown here, stiffener stitches 506-508 may be located between pocket stitches 136-138 and may be stitched or sewn substantially perpendicular to vertical axis 140. In other examples, stiffener stitches 506-508 may be located anywhere along stiffener pocket 134 and may be stitched in any angle relative to vertical axis 140 and are not limited to the sizes, locations, placements, or configurations as shown and described. In some examples, stiffener stitches 506-508 may be stitched or sewn through sheet 101 and through the material of stiffener 402 using any synthetic, natural, or other connective materials. For example, stiffener stitches 506-508 may comprise thread, string, or other synthetic or natural fibers. In other examples, stiffener stitches 506-508 may comprise other materials and are not limited to the examples provided above.
DDDD:: In some examples, various types of glues and adhesive materials may also be applied to secure stiffener 402 to sheet 101. Other types and techniques for securing stiffener 402 to sheet 101 may be used and are not limited to the above-described examples.
DDDD:: Although the foregoing examples have been described in detail for purposes of clarity of understanding, certain changes and modifications may be practiced within the scope of the appended claims. Accordingly, the present examples are to be considered as illustrative and not restrictive, and not limited to the details given herein and may be modified within the scope and equivalents of the appended claims. In the claims, elements and/or steps do not imply any particular order of operation, unless explicitly stated in the claims.
CLI :: 1. A nursing cover comprising: a cover including a top edge, the cover designed to provide coverage to a baby and a wearer; and a stiffener formed of a composite plastic shape memory material, the stiffener coupled to the top edge of the cover, including a securing mechanism preventing the stiffener from rotating, the stiffener having a predetermined state bowing outward to provide a viewing area when worn, wherein the stiffener maintains the pre-determined shape to form the viewing area enabling the wearer to view the baby while maintaining privacy, the stiffener assuming the pre-determined shape during a resting state, and when a force is applied to the stiffener the composite plastic shape memory material enabling the stiffener to temporarily deform without breaking, and reassume the pre-determined shape when the force is removed.
CLD :: 2. The nursing cover of claim 1, wherein the stiffener is disposed within a pocket along the top edge of the cover, and the securing mechanism preventing the stiffener from rotating within the pocket.
CLD :: 3. The nursing cover of claim 1, further comprising a smooth outer surface for an end of the stiffener, to reduce abrasion.
CLD :: 4. The nursing cover of claim 3, wherein the smooth outer surface comprises an end cap.
CLD :: 5. The nursing cover of claim 4, wherein the end cap is one of: formed as part of the stiffener, glued onto the stiffener end, sewn onto the stiffener end, stitched onto the stiffener end, connected by a bar to the stiffener end, melted onto the stiffener end, and coupled using a solvent which causes the stiffener or the end cap to become adhesive.
CLD :: 6. The nursing cover of claim 1, wherein the stiffener material is one or more of: mildew resistant, water resistant, and waterproof.
CLD :: 7. The nursing cover of claim 1, wherein the securing mechanism is at least one of a stitch, a staple, and an adhesive.
CLI :: 8. A nursing cover, comprising: a cover having a top edge; a stiffener comprised of a composite plastic shape memory material, the stiffener coupled to the cover using a securing mechanism to prevent the stiffener from rotating; the composite plastic shape memory material formed at manufacture with a pre-determined shape, the composite plastic shape memory material allowing the stiffener to temporarily deform without breaking the stiffener when force is applied to the stiffener, and to reassume the pre-determined shape when the force is removed, the pre-determined shape providing a viewing area enabling a wearer of the nursing cover to see under the cover while maintaining privacy; and an end of the stiffener provides a substantially smooth surface to prevent abrasion.
CLD :: 9. The nursing cover of claim 8, further comprising: a pocket along the top edge of the cover, the stiffener disposed within the pocket, the securing mechanism to prevent the stiffener from rotating within the pocket.
CLD :: 10. The nursing cover of claim 8, the smooth outer surface comprising an end cap.
CLD :: 11. The nursing cover of claim 10, wherein the end cap is one of: formed as part of the stiffener, glued onto the stiffener end, sewn onto the stiffener end, stitched onto the stiffener end, connected by a bar to the stiffener end, melted onto the stiffener end, and coupled using a solvent which causes the stiffener or the end cap to become adhesive.
CLD :: 12. The nursing cover of claim 8, wherein the stiffener material is one or more of: mildew resistant, water resistant, and waterproof.
CLD :: 13. The nursing cover of claim 8, the securing mechanism is at least one of a stitch, a staple, and an adhesive.
CLI :: 14. A nursing cover, comprising: a cover including a stiffener pocket; a stiffener in the stiffener pocket, the stiffener coupled to the cover using a securing mechanism to prevent the stiffener from rotating within the stiffener pocket, wherein the stiffener is comprised of a composite plastic shape memory material, the stiffener having a predetermined shape, the composite plastic shape memory material enabling the stiffener to temporarily deform without breaking the stiffener when force is applied to the stiffener, and to reassume the pre-determined shape when the force is removed; and an end of the stiffener provides a substantially smooth surface to prevent abrasion.
CLD :: 15. The nursing cover of claim 14, the smooth outer surface comprises an end cap.
CLD :: 16. The nursing cover of claim 15, wherein the end cap is one of: formed as part of the stiffener, glued onto the stiffener end, sewn onto the stiffener end, stitched onto the stiffener end, connected by a bar to the stiffener end, melted onto the stiffener end, and coupled using a solvent which causes the stiffener or the end cap to become adhesive.
CLD :: 17. The nursing cover of claim 14, the securing mechanism is at least one of a stitch, a staple, and an adhesive.
CLD :: 18. The nursing cover of claim 14, wherein the stiffener material is one or more of: mildew resistant, water resistant, and waterproof.
ENDRECORD
TITL:: Reusable abbreviated mitten device
DTYP:: pat
ATYP:: utility
PTNO:: 08661566
ISDT:: 20140304
APNO:: 13076559
APDT:: 20110331
PBNO::
PBDT::
AGAP:: 1069
AGPB::
AGAL:: 0
INVS:: GARCIA CARLOS M.
APLS:: GARCIA CARLOS M.
LREP::
ASSE::
EXMR:: HOEY ALISSA L
NCLS:: 1
NCLI:: 1
NCLD:: 0
NFIG:: 6
DSCL:: 1717
SUML:: 910
BKGL:: 175
DDRL:: 908
DDSL:: 0
CLFL:: 185
CLIL:: 186
CLDL:: 0
NREF:: 38
NRFA:: 3
NRFX:: 35
IPCC:: A-A-41-D-19-01-F-I
USCC:: 2158|| 38 95| 2 20|401 7| 2 21| 2 20| 2 20| 2 20|D22149| 2171| 21616| 21616|294 25|224666|D29119| 1510494|224555| 2 21| 21616| 21616|D29118|221197| 2 16| 2 16| 2 16|D29113| D7368| 21616|D29119|221197| 21616| 2 16| 2158| 2158| 2 20| 2158| 2 16|| 2 20|| 2 21|| 2158|| 2159|| 2160|| 21611|| 21616|| 21617|| 21618|| 2163|| 2168|| D2610|| D2611|| D2612|
SFLD:: 2 16| 2 20| 2 21| 2158| 2159| 2160| 21611| 21616| 21617| 21618| 2163| 2168| D2610| D2611| D2612
RLDX::
NRLD:: 0
NPRV:: 0
NPCT:: 0
ABST:: The reusable abbreviated mitten system provides a rubberized mitten having an abbreviated mitten length such that the mitten reaches only to the base of the thumb of a user, a finger portion, a hand reinforcement cuff, a symmetrical thumb portion, an obround case having an open top, a closed bottom, and an inverted L clip disposed on one side of the case. The mitten provides for quick donning and doffing while saving considerably on materials and production costs to not only provide easy, quick, reusable use, but also to contribute to environmentalism and natural resource savings. The mitten is formed of elastic rubber and alternately non-elastic rubber.
DHXX:: CROSS-REFERENCE TO RELATED APPLICATIONS
DDXX:: Not Applicable
DHXX:: FEDERALLY SPONSORED RESEARCH OR DEVELOPMENT
DDXX:: Not Applicable
DHXX:: INCORPORATION BY REFERENCE OF MATERIAL SUBMITTED ON A COMPACT DISK
DDXX:: Not Applicable
DHBK:: BACKGROUND OF THE INVENTION
DDBK:: A plethora of rubberized type gloves exist, with many being reusable. Most such reusable gloves, which may also include mittens, are full gloves and mittens whereby the devices fully cover hands and often wrists. In glove design, mittens are inherently beneficial regarding natural resources and material expenditures, as the surface area needed to cover a hand is reduced. Still, natural resources and production of full hand coverage may be wasteful. An abbreviated glove, which only essentially covers the fingers and thumb, and a part of the hand may therefore provide a significant reduction in waste as a contribution toward a global green effort. The present device provides this advantage, along with other advantages described herein.
DHBK:: FIELD OF THE INVENTION
DDBK:: The reusable abbreviated mitten device relates to reusable gloves and more especially to an abbreviated reusable mitten.
DHSM:: SUMMARY OF THE INVENTION
DDSM:: The general purpose of the reusable abbreviated mitten device, described subsequently in greater detail, is to provide a reusable abbreviated mitten device which has many novel features that result in an improved reusable abbreviated mitten device which is not anticipated, rendered obvious, suggested, or even implied by prior art, either alone or in combination thereof.
DDSM:: To attain this, the reusable abbreviated mitten device offers protection for a user's fingers, thumb, and across a user's hand at the base of the thumb. The device also provides an obround carry case with clip so that the mitten can be carried on various objects, such as an interior car door or the like wherein pocket edges and such are typically available. The carry case importantly has a case depth less than that of the mitten so that the mitten is easily obtained without typical mitten and glove encasement problems known to frequent users of such items. The obround case shape is important for easy accessibility of the mitten.
DDSM:: The mitten is importantly abbreviated for temporary, reusable use, without the full hand or hand and wrist coverage. This important feature accomplishes more than one goal. First, the mitten is easily donned and doffed, important for rapid, easy use. And, the savings in materials and production costs are significant. Cost savings provides for extremely low final sales price. Cost savings also makes a significant and favorable effort toward environmentalism, a very important feature of the device. Considering the number of reusable rubberized gloves in use daily across the globe, some for only seconds, for example, this is no small concern.
DDSM:: Another important feature of the mitten is the hand reinforcement. Many reusable gloves, for example, are torn during application due to lack of integrity when a user pulls at the glove in attempt to don. The hand reinforcement negates destruction of the mitten in donning and also provides sufficient integrity to guard against mitten malformation that might otherwise be experienced during the same donning procedure, such possible malformation being unfavorable to mitten use. Thus, the present mitten may be used several times prior to disposal.
DDSM:: An additional important feature is the design of the thumb portion. The symmetrical and relatively wide entry width of the thumb portion provides for easy donning of the mitten as well as omnidirectional use, availing either of a user's hands to the same mitten. Also, the symmetrical thumb portion narrows to an end width so that relatively effective thumb retention is possible, enabling reasonable mitten retention during right hand and alternate left hand use.
DDSM:: The mitten is provided as a right-hand mitten and alternately, as a left-hand mitten, in sizes from small to extra large and are also provided in rubberized material in an elastic form and in a non-elastic form. Mitten length dimensions are critical.
DDSM:: Thus has been broadly outlined the more important features of the improved reusable abbreviated mitten device so that the detailed description thereof that follows may be better understood and in order that the present contribution to the art may be better appreciated.
DDSM:: An object of the reusable abbreviated mitten device is to provide a reusable protection abbreviated glove.
DDSM:: An object of the reusable abbreviated mitten device is to be extremely conscious of waste of resources.
DDSM:: Another object of the reusable abbreviated mitten device is to be especially useful for use in fuel tank filling.
DDSM:: A further object of the reusable abbreviated mitten device is to provide easy glove application.
DDSM:: An added object of the reusable abbreviated mitten device is to provide easy glove removal.
DDSM:: And, an object of the reusable abbreviated mitten device is to ensure against excessive expansion at the hand reinforcement location.
DDSM:: A further object of the reusable abbreviated mitten device is to provide for either hand usage.
DDSM:: Yet another object of the reusable abbreviated mitten device is to provide for easy thumb entry for right hand use and alternately for left hand use.
DDSM:: Still another object of the reusable abbreviated mitten device is to provide for easy thumb removal.
DDSM:: And, an object of the reusable abbreviated mitten device is to provide readily accessible storage for the mitten.
DDSM:: Another object of the reusable abbreviated mitten device is to provide user choice in elasticity.
DDSM:: These together with additional objects, features and advantages of the improved reusable abbreviated mitten device will be readily apparent to those of ordinary skill in the art upon reading the following detailed description of presently preferred, but nonetheless illustrative, embodiments of the improved reusable abbreviated mitten device when taken in conjunction with the accompanying drawings.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: FIG. 1 is a perspective view.
DDDR:: FIG. 2 is a plan view.
DDDR:: FIG. 3 is a plan view of a pair of the devices, applied.
DDDR:: FIG. 4 is a perspective view of the case.
DDDR:: FIG. 5 is a perspective in-use view.
DDDR:: FIG. 6 is a perspective view of the device clipped to an existing interior car door.
DHDR:: DETAILED DESCRIPTION OF THE DRAWINGS
DDDR:: With reference now to the drawings, and in particular FIGS. 1 through 6 thereof, the principles and concepts of the reusable abbreviated mitten device generally designated by the reference number 10 will be described.
DDDR:: The abbreviated mitten 20 has a mitten length 21. The mitten length 21 is dependent upon mitten 20 sizing selected from a list consisting of sizes dependent upon small, medium, large, and extra large. The small size mitten length 21 is 41/2 inches. The medium size mitten length 21 is 51/4 inches. The large size mitten length 21 is 61/4 inches. The extra large size mitten length 21 is 7 inches. The mitten lengths 21 are important in that the finger and thumb of a user's hand, along with the portion of the hand that reaches across the hand at the base of the thumb are all protected, yet the waste of materials and manufacturing are negated relative to producing, for example, a device 10 that exceeded these lengths. The mitten 20 is rubberized. The term "rubberized" as used herein includes materials that are coated or impregnated with rubber as well as materials that contain natural or synthetic rubber therein.
DDDR:: Referring to FIG. 3, the mitten 20 further comprises a finger portion 22. The finger portion 22 is oriented for right hand use and alternately for left hand use.
DDDR:: The mitten 20 further comprises a hand reinforcement cuff 24 having a width 24A of about 1/2 inch. The mitten 20 further comprises the symmetrical thumb portion 26. The finger portion 22 includes a smooth semi-obround top surface 23, a smooth semi-obround bottom surface 25, and a continuous side surface 29 conjoining the top surface 23 and the bottom surface 25. The thumb portion 26 includes an entry side 35 and a continuous side wall 36. The side wall 36 includes a pair of substantially wedge-shaped bottom portions 39 attached to the bottom surface 25 and a central strip portion 40 affixed between the bottom portions 39. The wedge-shaped bottom portions 39 and the central strip portion 40 of the side wall 36 permit the thumb portion 26 to interchangeably accommodate the thumb on either the user's right hand or left hand.
DDDR:: Referring again to FIG. 1, the thumb portion 26 importantly has an entry width 27 of about 2 inches. This entry width 27 enables ease of entry of the thumb of either hand of a user. Also important is the thumb portion 26 end width 28 of about 1 inch. This end width 28 enables reasonable retention of a user's thumb while still permitting chosen escape from the mitten 20.
DDDR:: Referring to FIG. 4, the device 10 further comprises the obround case 30 having an open top 32 and a closed bottom 33. The inverted L clip 34 is disposed on one side of the case 30. The case 30 further comprises a case depth 31 of about 4 inches. The case depth 31 of about 4 inches is important in that any size of the mitten 20 may be removably retained and yet remain extremely accessible to a user. The obround shape makes a further important statement to mitten 20 availability.
DDDR:: Referring to FIG. 5, the mitten 20 is used to grasp an existing gas pump handle 12 while negating any contamination of a user's hand.
DDDR:: Referring to FIG. 6, the obround case 30 is removably attached within an existing interior car door 14. The availability of mitten 20 from the case 30 is illustrated.
DDDR:: Directional terms such as front, back, in, out, and the like may have been used in the description. These terms are applicable to the embodiments shown and described in conjunction with the drawings. These terms are merely used for the purpose of description in connection with the drawings and do not necessarily apply to the position in which the reusable abbreviated mitten device may be used.
CLI :: 1. A reusable abbreviated mitten system consisting of: a rubberized, elastic mitten having a mitten length, the length selected from a group consisting of 41/2 inches, 51/4 inches, 61/4 inches, and 7 inches, the mitten further comprising: a finger portion comprising a smooth semi-obround top surface, a smooth semi-obround bottom surface, and a continuous side surface conjoining the top surface and the bottom surface; a hand reinforcement cuff having a width of about 1/2 inch; a symmetrical thumb portion, the thumb portion comprising an entry side and a continuous side wall, the side wall comprising a pair of substantially wedge-shaped bottom portions attached to the bottom surface and a rectangular central portion disposed between the bottom portions, the thumb portion having an entry width of about 2 inches and an end width of about 1 inch; an obround case having an open top, a closed bottom and a case depth of about 4 inches; an inverted L clip disposed on a one side of the case; wherein the finger portion is configured to accommodate the fingers of a right hand and alternately of a left hand.
ENDRECORD
TITL:: Sweat management system
DTYP:: pat
ATYP:: utility
PTNO:: 08661567
ISDT:: 20140304
APNO:: 12807731
APDT:: 20100913
PBNO::
PBDT::
AGAP:: 1268
AGPB::
AGAL:: 1797
INVS:: HOOVER MICHELE M.|HOOVER JOSEPH BROOKE
APLS:: HOOVER MICHELE M.|HOOVER JOSEPH BROOKE
LREP::
ASSE::
EXMR:: PATEL TEJASH
NCLS:: 3
NCLI:: 3
NCLD:: 0
NFIG:: 16
DSCL:: 3460
SUML:: 1472
BKGL:: 77
DDRL:: 2377
DDSL:: 0
CLFL:: 258
CLIL:: 259
CLDL:: 565
NREF:: 5
NRFA:: 0
NRFX:: 5
IPCC:: A-A-41-D-20-00-F-I
USCC:: 2170||602 63| 2170| 2181| 2 16| 2170|602 20- 23|602 62||602 63|| 2 16|| 2170|| 2171|| 2162|| 2918|| 2DIG 11|
SFLD:: 602 20- 23|602 62|602 63| 2 16| 2170| 2171| 2162| 2918| 2DIG 11
RLDX:: CIP:12384226:20090402:12807731
NRLD:: 1
NPRV:: 0
NPCT:: 0
ABST:: An interior layer has inner and outer surfaces. The interior layer is fabricated of an elastic sweat transferring material. An exterior layer is positioned overlying the interior layer. The exterior layer has inner and outer surfaces. The exterior layer is fabricated of an elastic sweat transferring material. A chamber is formed between the interior layer and the exterior layer. An intermediate layer is provided within the chamber in pressure contact with the interior layer. The intermediate layer is fabricated of a sweat-trapping and containing material.
DHXX:: RELATED APPLICATION
DDXX:: The present application is a continuation-in-part of U.S. patent application Ser. No. 12/384,226 filed Apr. 2, 2009 now abandoned, the subject matter of which is incorporated herein by reference.
DHBK:: BACKGROUND OF THE INVENTION
DHBK:: FIELD OF THE INVENTION
DDBK:: The present invention relates to a sweat management system and more particularly pertains to conducting sweat away from a user wearing the system and for trapping and containing such conducted sweat, the conducting and trapping and containing being achieved in a safe, convenient and economical manner.
DHSM:: SUMMARY OF THE INVENTION
DDSM:: In view of the disadvantages inherent in the known types of sweat management systems of known designs and configurations now present in the prior art, the present invention provides an improved sweat management system. As such, the general purpose of the present invention, which will be described subsequently in greater detail, is to provide a new and improved sweat management system and method which has all the advantages of the prior art and none of the disadvantages.
DDSM:: To attain this, the present invention essentially comprises a sweat management system. First provided is an interior layer. The interior layer has an inner surface. The inner surface is positionable in pressure-exerting contact with the wrist of the user, such as a tennis player. The interior layer has an outer surface. The outer surface is positionable out of contact with the wrist of the user, such as a tennis player. The interior layer is fabricated of an elastic sweat transferring material. The sweat transferring material includes about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber. The interior layer is adapted to attract sweat away from the wrist of the user at a location adjacent to the inner surface of the interior layer. The interior layer is further adapted to conduct attracted sweat to a location adjacent to the outer surface of the interior layer.
DDSM:: An exterior layer is provided. The exterior layer is positioned overlying the interior layer. The exterior layer has an inner surface. The inner surface is adjacent to and faces toward the interior layer. The exterior layer has an outer surface. The outer surface faces away from the interior layer and is exposed to the atmosphere. The exterior layer is fabricated of an elastic sweat transferring material. The sweat transferring material includes about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber. The term "about" used to identify the percentage of components in the layers is intended to mean the identified percentage plus or minus 10 percent of the identified amount. The exterior layer is adapted to transmit to the intermediate layer sweat generated by a user at locations other than locations contacted by the interior layer.
DDSM:: Provided next is a cylindrical chamber. The cylindrical chamber is formed between the interior layer and the exterior layer. The cylindrical chamber has an axial length and a circumference. The circumference is about the same length as the axial length.
DDSM:: Further provided is an intermediate layer. The intermediate layer is provided within the chamber. The intermediate layer has an inner surface. The inner surface is positioned in pressure contact with the interior layer. The intermediate layer has an outer surface. The outer surface is in contact with the exterior layer. The intermediate layer is fabricated of a sweat-trapping and containing material. The material includes 100 percent non-woven cellulose, preferably viscose rayon, a synthetic shammy material. The intermediate layer is adapted to receive sweat from the interior layer. The intermediate layer is adapted to trap and contain several times its weight in sweat. In this manner when a wearing the system generates sweat at the inner surface of the interior layer, the generated sweat will be trapped and contained in the intermediate layer. The intermediate layer has the capability to trap and contain up to 12 times its weight in sweat. In this manner the system is significantly more effective than known sweat management devices in keeping dry the wrist or other body part of the user. The intermediate layer is formed of two similar panels with stitching coupling the axial ends of each panel to the interior and exterior layers. Axial spacings between the panels with the spacings constituting between 5 and 15 percent of the circumference of the system. Such spacings allow for stretching of the system to facilitate putting on and taking off.
DDSM:: The interior layer and the exterior layer are fabricated of a single piece of fabric. The fabric is configured into a generally flat, torus-shaped common piece of fabric. The fabric has free ends. The free ends have stitching. The stitching joins the free ends. In this manner the chamber is formed in a generally cylindrical configuration. Also in this manner the intermediate layer is in a generally cylindrical configuration corresponding to the size and shape of the chamber.
DDSM:: There has thus been outlined, rather broadly, the more important features of the invention in order that the detailed description thereof that follows may be better understood and in order that the present contribution to the art may be better appreciated. There are, of course, additional features of the invention that will be described hereinafter and which will form the subject matter of the claims attached.
DDSM:: In this respect, before explaining at least one embodiment of the invention in detail, it is to be understood that the invention is not limited in its application to the details of construction and to the arrangements of the components set forth in the following description or illustrated in the drawings. The invention is capable of other embodiments and of being practiced and carried out in various ways. Also, it is to be understood that the phraseology and terminology employed herein are for the purpose of descriptions and should not be regarded as limiting.
DDSM:: As such, those skilled in the art will appreciate that the conception, upon which this disclosure is based, may readily be utilized as a basis for the designing of other structures, methods and systems for carrying out the several purposes of the present invention. It is important, therefore, that the claims be regarded as including such equivalent constructions insofar as they do not depart from the spirit and scope of the present invention.
DDSM:: It is therefore an object of the present invention to provide a new and improved sweat management system which has all of the advantages of the prior art sweat management systems of known designs and configurations and none of the disadvantages.
DDSM:: It is another object of the present invention to provide a new and improved sweat management system which may be easily and efficiently manufactured and marketed.
DDSM:: It is further object of the present invention to provide a new and improved sweat management system which is of durable and reliable constructions.
DDSM:: An even further object of the present invention is to provide a new and improved sweat management system which is susceptible of a low cost of manufacture with regard to both materials and labor, and which accordingly is then susceptible of low prices of sale to the consuming public, thereby making such sweat management system economically available to the buying public.
DDSM:: Even still another object of the present invention is to provide a sweat management system for conducting sweat away from a user wearing the system and for trapping and containing such conducted sweat, the conducting and trapping and containing being achieved in a safe, convenient and economical manner.
DDSM:: Lastly, it is an object of the present invention to provide a new and improved sweat management system. An interior layer has inner and outer surfaces. The interior layer is fabricated of an elastic sweat transferring material. An exterior layer is positioned overlying the interior layer. The exterior layer has inner and outer surfaces. The exterior layer is fabricated of an elastic sweat transferring material. A chamber is formed between the interior layer and the exterior layer. An intermediate layer is provided within the chamber in pressure contact with the interior layer. The intermediate layer is fabricated of a sweat-trapping and containing material.
DDSM:: These together with other objects of the invention, along with the various features of novelty which characterize the invention, are pointed out with particularity in the claims annexed to and forming a part of this disclosure. For a better understanding of the invention, its operating advantages and the specific objects attained by its uses, reference should be had to the accompanying drawings and descriptive matter in which there is illustrated preferred embodiments of the invention.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: The invention will be better understood and objects other than those set forth above will become apparent when consideration is given to the following detailed description thereof. Such description makes reference to the annexed drawings wherein:
DDDR:: FIG. 1 is a perspective illustration of a sweat management system constructed in accordance with the principles of the present invention.
DDDR:: FIG. 2 is a cross sectional view taken along line 2-2 of FIG. 1.
DDDR:: FIG. 3 is a cross sectional view taken along line 3-3 of FIG. 2.
DDDR:: FIG. 4 is a perspective illustration of an alternate embodiment of the invention.
DDDR:: FIG. 5 is a cross sectional view taken along line 5-5 of FIG. 4.
DDDR:: FIG. 6 is a perspective illustration of another alternate embodiment of the invention.
DDDR:: FIG. 7 is a side elevational view of the next alternate embodiment of the invention.
DDDR:: FIG. 8 is a bottom view of the next embodiment taken along line 8-8 of FIG. 7.
DDDR:: FIG. 9 is a cross sectional view taken along line 9-9 of FIG. 8.
DDDR:: FIG. 10 is a side view of an additional alternate embodiment of the invention.
DDDR:: FIG. 11 is a cross sectional view taken along line 11-11 of FIG. 10.
DDDR:: FIG. 12 is a front elevational view of yet another embodiment of the present invention.
DDDR:: FIG. 13 is a cross sectional view taken along line 13-13 of FIG. 12.
DDDR:: FIG. 14 is a front elevational view a final alternate embodiment of the present invention.
DDDR:: FIG. 15 is a side elevational view taken along line 15-15 of FIG. 14.
DDDR:: FIG. 16 is a cross sectional view taken along line 16-16 of FIG. 15.
DDDR:: The same reference numerals refer to the same parts throughout the various Figures.
DHDR:: DESCRIPTION OF THE PREFERRED EMBODIMENT
DDDR:: With reference now to the drawings, and in particular to FIG. 1 thereof, the preferred embodiment of the new and improved sweat management system embodying the principles and concepts of the present invention and generally designated by the reference numeral 10 will be described.
DDDR:: The present invention, the sweat management system 10 is comprised of a plurality of components. Such components in their broadest context include an interior layer, an exterior layer, a chamber and an intermediate layer. Such components are individually configured and correlated with respect to each other so as to attain the desired objective.
DDDR:: First provided is an interior layer 14. The interior layer has an inner surface 16. The inner surface is positionable in pressure-exerting contact with the wrist of the user. The interior layer has an outer surface 18. The outer surface is positionable out of contact with the wrist of the user. The interior layer is fabricated of an elastic sweat transferring material. The sweat transferring material includes about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber. The interior layer is adapted to attract sweat away from the user at a location adjacent to the inner surface of the interior layer. The interior layer is further adapted to conduct attracted sweat to a location adjacent to the outer surface of the interior layer.
DDDR:: An exterior layer 22 is provided. The exterior layer is positioned overlying the interior layer. The exterior layer has an inner surface 24. The inner surface is adjacent to and faces toward the interior layer. The exterior layer has an outer surface 26. The outer surface faces away from the interior layer and is exposed to the atmosphere. The exterior layer is fabricated of an elastic sweat transferring material. The sweat transferring material includes about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber. The term "about" used to identify the percentage of components in the layers is intended to mean the identified percentage plus or minus 10 percent of the identified amount. The exterior layer is adapted to transmit to the intermediate layer sweat generated by a user at locations other than locations contacted by the interior layer.
DDDR:: Provided next is a cylindrical chamber 30. The cylindrical chamber is formed between the interior layer and the exterior layer. The cylindrical chamber has an axial length and a circumference. The circumference is about the same length as the axial length.
DDDR:: Further provided is an intermediate layer 34. The intermediate layer is provided within the chamber. The intermediate layer has an inner surface 36. The inner surface is positioned in pressure contact with the interior layer. The intermediate layer has an outer surface 38. The outer surface is in contact with the exterior layer. The intermediate layer is fabricated of a sweat-trapping and containing material. The material includes 100 percent non-woven cellulose, preferably viscose rayon, a synthetic shammy material. The intermediate layer is adapted to receive sweat from the interior layer. The intermediate layer is adapted to trap and contain several times its weight in sweat. In this manner when a user, such as a tennis player, wearing the system generates sweat at the inner surface of the interior layer, the generated sweat will be trapped and contained in the intermediate layer. The intermediate layer has the capability to trap and contain up to 12 times its weight in sweat. The system is thus significantly more effective than known sweat management devices in keeping dry the wrist, or other body part contacted, of the user. The intermediate layer is formed of two similar panels with stitching 40 coupling the axial ends of each panel to the interior and exterior layers. Axial spacings between the panels with the spacings constituting between 5 and 15 percent of the circumference of the system. Such spacings allow for stretching of the system to facilitate putting on and taking off.
DDDR:: The interior layer and the exterior layer are fabricated of a single piece of fabric 42. The fabric is configured into a generally flat, torus-shaped common piece of fabric. The fabric has free ends. The free ends have stitching 44. The stitching joins the free ends. In this manner the chamber is formed in a generally cylindrical configuration. Also in this manner the intermediate layer is in a generally cylindrical configuration with an oval cross sectional configuration corresponding to the size and shape of the chamber.
DDDR:: FIGS. 4 and 5 illustrate an alternate embodiment 100 of the invention. An interior layer 104 and exterior layer 106 are provided. The interior and exterior layers are fabricated from separate pieces of fabric. The interior and exterior layers include fabric end caps 108. The end caps have stitching 110. The stitching attaches the end caps to the layers and the layers to each other. The chamber has a cylindrical configuration. The chamber is formed between the interior layer and the exterior layer. The chamber has an axial length and a circumference. The circumference is about the same length as the axial length. In this manner the system is adapted to function as a wrist band.
DDDR:: The next alternate embodiment 200 is illustrated in FIG. 6. An interior layer 204 and exterior layer 206 are provided. The interior and exterior layers are fabricated from a single piece of fabric. The chamber is in a cylindrical configuration. The chamber is formed between the interior layer and the exterior layer. The chamber has an axial length and a circumference. The circumference is of a length greater than the axial length. In this manner system is adapted to function as a head band.
DDDR:: Reference is now made to the alternate embodiment 300 as illustrated in FIGS. 7, 8 and 9. An interior layer 304 and exterior layer 306 and the intermediate layer 308 are provided. The interior, exterior, and intermediate layers are fabricated in a generally rectangular configuration. A chamber 310 is provided. The chamber is a generally rectangular chamber. The chamber is formed between the interior layer and the exterior layer. The chamber has an axial length and a height. The axial length is between 2 and 4 times the height. In this manner the layers are positionable across the forehead of a wearer. Further in this manner the system is adapted to function as head wear.
DDDR:: In another alternate embodiment of the present invention a strap 314 is provided. The strap is coupled to and extends rearwardly from the layers. A bill 316 is provided. The bill is coupled to and extends forwardly from the layers. In this manner the system is adapted to function as a visor.
DDDR:: In another alternate embodiment of the present invention a crown 320 is provided. The crown extends upwardly from the layers and the strap. In this manner the system is adapted to function as a cap.
DDDR:: FIGS. 10 and 11 are perspective illustrations of another alternate embodiment 400 of the invention. In such embodiment the interior and exterior and intermediate layers are formed as in the prior embodiments. The layers, however, are formed with the top of a sock for functioning as an athletic sock.
DDDR:: System 500 is illustrated in FIGS. 12 and 13. In such embodiment, the interior and exterior layers 504, 506 and the intermediate layer 508 are fabricated of rectangular pieces of fabric. In addition, the interior and exterior layers and the intermediate layer all have a common height and a common width and a common periphery. The system further includes stitching 510 extending through the interior and exterior and intermediate layers in a rectangular configuration adjacent to the common periphery. In the preferred embodiment, the height is 24 inches and the width is 16 inches. The width is thus between 60 and 75 percent of the height.
DDDR:: The final alternate embodiment of the invention is illustrated in FIGS. 14, 15 and 16. In such system 600, the interior layer is a shirt 604. The shirt has a front and a back and sides. A neck opening 606 is above with laterally spaced arm openings 608 and a waist opening 610 below. The waist opening has a circumference. The exterior layer 612 and the intermediate layer 614 include a first side assembly 616 and a second side assembly 618. The exterior layers and intermediate layers of the first and second side assemblies have the same size and shape with a linear portion 616 below and an arcuate portion 618 above. The linear portion is between 10 and 25 percent of the circumference and the maximum height of the arcuate portion is between 40 and 50 percent of the vertical distance between the waist opening and an arm opening.
DDDR:: As to the manner of usage and operation of the present invention, the same should be apparent from the above description. Accordingly, no further discussion relating to the manner of usage and operation will be provided.
DDDR:: With respect to the above description then, it is to be realized that the optimum dimensional relationships for the parts of the invention, to include variations in size, materials, shape, form, function and manner of operation, assembly and use, are deemed readily apparent and obvious to one skilled in the art, and all equivalent relationships to those illustrated in the drawings and described in the specification are intended to be encompassed by the present invention.
DDDR:: Therefore, the foregoing is considered as illustrative only of the principles of the invention. Further, since numerous modifications and changes will readily occur to those skilled in the art, it is not desired to limit the invention to the exact construction and operation shown and described, and accordingly, all suitable modifications and equivalents may be resorted to, falling within the scope of the invention.
CLI :: 1. A sweat management system comprising: an interior layer having inner and outer surfaces, the interior layer being fabricated of a sweat transferring material; an exterior layer positioned overlying the interior layer, the exterior layer having inner and outer surfaces, the exterior layer being fabricated of a sweat transferring material; a chamber formed between the interior layer and the exterior layer; and an intermediate layer within the chamber in pressure contact with the interior layer, the intermediate layer having an inner surface positioned in pressure contact with the interior layer, the intermediate layer having an outer surface in contact with the exterior layer, the intermediate layer being fabricated of a sweat-trapping and containing material, the material including 100 percent non-woven cellulose, preferably viscose rayon, a synthetic shammy material, the intermediate layer adapted to transmit sweat from the interior layer to the intermediate layer for trapping and containing sweat from the wrist of the user wearing the system, the intermediate layer adapted to trap and contain several times its weight in sweat whereby when a user wearing the system generates sweat at the inner surface of the interior layer, the generated sweat will be trapped and contained in the intermediate layer, the intermediate layer having the capability to trap and contain up to 12 times its weight in sweat whereby the system is significantly more effective than known sweat management devices in keeping dry the wrist of the user.
CLI :: 2. A wrist band comprising: an interior layer having inner and outer surfaces, the interior layer being fabricated of a sweat transferring material; an exterior layer positioned overlying the interior layer, the exterior layer having inner and outer surfaces, the exterior layer being fabricated of a sweat transferring material; a chamber formed between the interior layer and the exterior layer; and an intermediate layer within the chamber in pressure contact with the interior layer, the intermediate layer being fabricated of a sweat-trapping and containing material, the interior and exterior layers being fabricated from a single piece of fabric and the chamber being in a cylindrical configuration formed between the interior layer and the exterior layer, the chamber having an axial length and a circumference, the circumference being about the same length as the axial length whereby the system is adapted to function as a wrist band, the intermediate layer adapted to transmit sweat from the interior layer to the intermediate layer for trapping and containing sweat from the wrist of the user wearing the system, the intermediate layer adapted to trap and contain several times its weight in sweat whereby when a user wearing the system generates sweat at the inner surface of the interior layer, the generated sweat will be trapped and contained in the intermediate layer, whereby the system is significantly more effective than known sweat management devices in keeping dry the wrist of the user, the intermediate layer being formed of two similar panels with stitching coupling the axial ends of each panel to the interior and exterior layers, axial spacings formed between the panels with the spacings constituting between 5 and 15 percent of the circumference of the system.
CLI :: 3. A sweat management system for conducting sweat away from a wrist of a user wearing the system and for trapping and containing such conducted sweat, the system comprising, in combination: an interior layer having an inner surface positionable in pressure-exerting contact with the wrist of the user, the interior layer having an outer surface positionable out of contact with the wrist of the user, the interior layer being fabricated of an elastic sweat transferring material including about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber, the interior layer adapted to attract sweat away from the wrist of the user at a location adjacent to the inner surface of the interior layer and conduct such attracted sweat to a location adjacent to the outer surface of the interior layer; an exterior layer positioned overlying the interior layer, the exterior layer having an inner surface adjacent to and facing toward the interior layer, the exterior layer having an outer surface facing away from the interior layer and exposed to the atmosphere, the exterior layer being fabricated of an elastic sweat transferring material including about 80 percent polyester, about 10 percent nylon, and about 10 percent rubber, the exterior layer being adapted to transmit sweat generated by a user at locations other than locations contacted by the interior layer; a cylindrical chamber formed between the interior layer and the exterior layer, the cylindrical chamber having an axial length and a circumference, the circumference being about the same length as the axial length; an intermediate layer within the chamber, the intermediate layer having an inner surface positioned in pressure contact with the interior layer, the intermediate layer having an outer surface in contact with the exterior layer, the intermediate layer being fabricated of a sweat-trapping and containing material, the material including 100 percent non-woven cellulose, preferably viscose rayon, a synthetic shammy material, the intermediate layer adapted to transmit sweat from the interior layer to the intermediate layer for trapping and containing sweat from the wrist of the user wearing the system, the intermediate layer adapted to trap and contain several times its weight in sweat whereby when a user wearing the system generates sweat at the inner surface of the interior layer, the generated sweat will be trapped and contained in the intermediate layer, the intermediate layer having the capability to trap and contain up to 12 times its weight in sweat whereby the system is significantly more effective than known sweat management devices in keeping dry the wrist of the user, the intermediate layer being formed of two similar panels with stitching coupling the axial ends of each panel to the interior and exterior layers, axial spacings formed between the panels with the spacings constituting between 5 and 15 percent of the circumference of the system; and the interior layer and the exterior layer being fabricated of a single piece of fabric configured into a generally flat, torus-shaped common piece of fabric having free ends with stitching joining the free ends, whereby the chamber is formed in a generally cylindrical configuration and whereby the intermediate layer is in a generally cylindrical configuration corresponding to the size and shape of the chamber.
ENDRECORD
TITL:: Hybrid hosiery
DTYP:: pat
ATYP:: utility
PTNO:: 08661568
ISDT:: 20140304
APNO:: 12845320
APDT:: 20100728
PBNO::
PBDT::
AGAP:: 1315
AGPB::
AGAL:: 1679
INVS:: O'BRIEN KERRY K.
APLS:: O'BRIEN KERRY K.
LREP:: DOWNS RACHLIN MARTIN PLLC
ASSE:: COMMANDO, LLC
EXMR:: QUINN RICHALE
NCLS:: 11
NCLI:: 2
NCLD:: 9
NFIG:: 8
DSCL:: 2027
SUML:: 232
BKGL:: 251
DDRL:: 376
DDSL:: 1425
CLFL:: 228
CLIL:: 229
CLDL:: 254
NREF:: 42
NRFA:: 0
NRFX:: 42
IPCC:: A-A-41-B-9-04-F-I
USCC:: 2239| 2409|| 2409|602 25| 2239| 2240| 66178 R| 2239|450104| 2409| 66187| 2409|450116| 66169 R| 2240| 66 1 A| 66 27| 2409| 2409| 2409|112441|112 63| 2409| 66193| 2409| 2239|135 332| 2409| 2409| 66178 R| 66171| 2239| 2409|139422| 66172 E|139422|11247508| 66172 E| 66202| 2239| 66178 R| 2409| 2407| 2239| 2409|| 2407|| 2239|| 2241|| 2242|| 2400|| 2401|| 2406|| 66104|| 66171|| 66172 R|| 66178 R|| 66169 R|| 66178 A||450104|
SFLD:: 2409| 2407| 2239| 2241| 2242| 2400| 2401| 2406| 66104| 66171| 66172 R| 66178 R| 66169 R| 66178 A|450104
RLDX:: PRV:61229594:20090729
NRLD:: 1
NPRV:: 1
NPCT:: 0
ABST:: Hosiery that includes a legwear portion and a waistband secured to the legwear portion. The waistband is made of an elastic material having an unfinished upper edge. The waistband also has an unfinished lower edge that is secured to the legwear portion at a seam that allows the hosiery to lay substantially flat against a wearer's body. The unfinished upper edge of the waistband can provide the wearer with greater comfort relative to conventional hosiery having finished upper edges, which often results in visible and uncomfortable restriction. This hybrid construction also allows the waistband to have varying width around its circumference to compensate for shortcomings of a legwear portion made using conventional tube-construction techniques and/or, when the waistband has a lower stretchability than the legwear portion, to compensate for this lower stretchability.
DHXX:: RELATED APPLICATION DATA
DDXX:: This application claims the benefit of priority of U.S. Provisional Patent Application Ser. No. 61/229,594, filed on Jul. 29, 2009, and titled "Hybrid Hosiery," which is incorporated by reference herein in its entirety.
DHXX:: FIELD OF THE INVENTION
DDXX:: The present invention generally relates to the field of hosiery. In particular, the present invention is directed to hybrid hosiery.
DHBK:: BACKGROUND
DDBK:: Women (and sometimes men) typically wear hosiery (nylons, tights, leggings) on their legs, usually under a dress or skirt. Reasons people wear hosiery are: for support, to even skin tone and flatter the body, for additional warmth, to cover their legs to be more conservative, as an undergarment, for extra coverage in case her dress/skirt flies up, or simply as a fashion accessory.
DDBK:: Typical hosiery is made largely of spun nylon blended with spandex, sometimes with a cotton-lined crotch. The top of the garment is folded over, creating a waistband at the top of the garment. The waistband is deemed necessary in order to finish the knit nylon, as well as being necessary in order to prevent the garment from slipping down from the waist to the wearer's hips. As those skilled in the art will understand, a variety of other yarns are used or blended to make the legs.
DDBK:: Traditionally, whether hosiery is control top or designed for comfort, the waistband digs into the wearer's body. The digging effect is uncomfortable for the wearer, as her body is constricted. The discomfort is further exacerbated when the wearer is seated and/or after a full day dressed in traditional hosiery. In addition to discomfort, traditional waistbands are inadequate because they create an undesirable look where the woman's body bulges over the top of the narrow, constricting waistband.
DHSM:: SUMMARY
DDSM:: In one implementation, the present disclosure is directed to a hosiery that includes: a legwear portion made of a first stretchable material, the legwear portion having an upper end; and a waistband having a raw-cut upper edge and a raw-cut lower edge, the raw-cut lower edge secured to the legwear portion at the upper end of the legwear portion with a smooth seam, the waistband being made of a second stretchable material that does not roll and does not fray at the raw-cut upper edge.
DDSM:: In another implementation, the present disclosure is directed to a hosiery that includes: a legwear portion made of a first stretchable material having a denier in a range from about 3 to about 100, the legwear portion having an upper end located at about the hips of an intended wearer when the hosiery is worn by the intended wearer; and a waistband having a raw-cut upper edge and a raw-cut lower edge, the raw-cut lower edge secured to the legwear portion at the upper end with a smooth seam, the waistband being made of a second stretchable material that does not roll and does not fray at the raw-cut upper edge, wherein the raw-cut upper edge of the waistband is located at about the waist of the intended wearer when the intended wearer is wearing the hosiery.
DHDR:: BRIEF DESCRIPTION OF THE DRAWINGS
DDDR:: For the purpose of illustrating the invention, the drawings show aspects of one or more embodiments of the invention. However, it should be understood that the present invention is not limited to the precise arrangements and instrumentalities show in the drawings, wherein:
DDDR:: FIG. 1A is an elevational front view of an example of hybrid hosiery made in accordance with the present invention;
DDDR:: FIG. 1B is an enlarged partial front view of the example of FIG. 1A showing the detail of the front center seam connection between the waistband and legwear;
DDDR:: FIG. 1C is an enlarged partial bottom view of the example of FIG. 1A showing the cotton-lined gusset;
DDDR:: FIG. 2 is an enlarged overhead view of the inside of the example of FIG. 1A, showing locations of various seams;
DDDR:: FIG. 3A is an enlarged partial elevational front view of the example of FIG. 1A showing the raw edge (no elastic) of the waistband;
DDDR:: FIG. 3B is a further enlarged partial elevational front view of the intersection of a side of the hybrid hosiery at the waistband and the unfinished upper edge of the waistband, as taken from FIG. 3A;
DDDR:: FIG. 3C is a further enlarged partial perspective view highlighting the overlock seam, as taken from FIG. 3A; and
DDDR:: FIG. 4 is a side-elevational partial view of a person wearing the hybrid hosiery of FIG. 1A, demonstrating a practical use of the hosiery in everyday wear under a skirt.
DHDD:: DETAILED DESCRIPTION
DDDD:: Hybrid hosiery made in accordance with concepts disclosed herein is unique because the construction of the garment incorporates a special waistband made of a special nylon/spandex blend fabric that does not curl or fray when cut and does not require a finish, such as hem or attached elastic or trim. The hybrid hosiery waistband is raw cut, leaving the top of the garment with a completely unfinished edge. The raw-cut edges provide an aesthetically pleasing look that looks clean and lays flat. Additionally, the raw-cut edges provide comfort because they do not dig into the wearer's waist. In one embodiment, the hybrid hosiery includes knit legwear that is secured to the raw-cut waistband using an overlock stitch seam. The unique fabric of the waistband is constructed in such a manner that creates the precise amount of friction that is required in order to keep the garment in the proper location on the wearer's body. The exact sizing and proportions of hybrid hosiery prevent the garment from slipping from the wearer's waist down to her hips or lower. Furthermore, the special properties of the waistband's fabric allow the unfinished edge without any rolling effect. Typically, an unfinished seam would curl outward, especially as the wearer moved and changed body positions, and the garment would roll down her body.
DDDD:: Referring now to the drawings, FIGS. 1A-B illustrate an example of hybrid hosiery 100 that combines a knit legwear portion 101 with a raw-cut nylon-spandex microfiber waistband 102. In one example, waistband 102 is made of a 72% nylon/28% spandex blend. As those skilled in the art will appreciate, nylon-spandex material having other relative blends are available and could be used in place of the noted 72% nylon/28% spandex blend. In addition, such blends may include other material(s) in various amounts. In this example, waistband portion 102 is secured to the legwear portion 101 so as to create an invisible, non-constricting garment, and the legwear portion is made of a conventional tubular knit pantyhose material, such as a nylon-based material having a denier ranging from about 3 to about 100.
DDDD:: Nylon/spandex waistband 102 is secured to knit legwear portion 101 at a seam, for example, a 4-thread overlock stitch seam 103 that has been graded. Using stretchy thread that allows for additional movement, stitches are the proper distance from each other to ensure comfort, flexibility and stretchability that complements the stretchability of waistband 102 and knit legwear portion 101. Nylon/spandex waistband 102 is sewn with certain pleating 104 that further increases the comfort for the person wearing the garment. Hybrid hosiery 100 is sized so that pleating 104 flattens smoothly and disappears against the body when a person wears the garment, therefore increasing the invisibility of the hosiery. Graded seam 103 allows the two different materials to join smoothly. In this example, hybrid hosiery 100 is provided with a gusset 105 lined with cotton so as to allow the garment to be worn as an undergarment without supplemental intimate apparel.
DDDD:: Waistband 102 has an upper edge that is raw cut and remains so when hybrid hosiery 100 is completed and ready for use. Since the raw cut waistband 102 can be created in a traditional cut and sew process and legwear portion 101 will typically be constructed in a tapered tube shape in a circular knit process, other unique advantages can be brought to bear from variable width waistbands, such as having a waistband higher in the back than in the front, or vice versa. To finish traditional hosiery, manufacturers will (a) fold over the top of the "tube" to form, for example, a 1-inch "self" waistband or (b) sew on a separate elastic strip to function as a waistband. In both cases the waistband is a uniform width. Hybrid hosiery 100, which utilizes a separate fabric sheet that can be cut to exact shape specifications to form waistband 102, affords the ability to, for example, taper the waistband to be 4.5 inches (11.43 cm) high in the front and 5.5 inches (13.97 cm) high in the back when the hosiery is worn, as measured from waistband seam 103. Such a waistband width differential, in this case resulting in a front/back height differential, can improve the appearance, function and fit of the finished garment in a way that traditional approaches cannot. For example, in conventional hosiery made using typical tube-construction techniques, the waistband can ride lower on the wearer in the rear than in the front as the hosiery is stressed and strained in its seat portion to accommodate the buttocks of the wearer. When it occurs, this unevenness of a conventional waistband can be uncomfortable to the wearer, especially when the finished upper is tight on the wearer. In another example, when the material of waistband 102 is relatively less stretchable than the material of legwear portion 101, providing the waistband with a greater width in the rear provides more waistband material to accommodate the greater stretching caused by the wearer's buttocks. In other words, the extra material in waistband 102 at the rear of hosiery 100 compensates for its lower stretchability, thus providing greater comfort to the wearer.
DDDD:: FIG. 2 illustrates an example of the tapering of waistband 102 mentioned above and in which the waistband tapers in width from the rear 120 to front 124 of hybrid hosiery 100. As seen in FIG. 2, which can be taken to scale, the width, WR, of waistband 102 at rear 120 is greater than the width, WF, of the waistband at front 124. In one example, noted above, width WR is 5.5 inches (13.97 cm) and width WF is 4.5 inches (11.43 cm). FIGS. 1A, 3A, and 3B also attempt to show the width differential of waistband 102 as between front 124 and rear 120 by raw edge 107 at the rear being shown higher than the raw edge at the front. It is also mentioned above that waistband 102 can be wider at front 124 than at rear 120. This situation is depicted in FIG. 4, wherein front width WF' is shown as being greater than rear width WR' by virtue of raw edge 107 being higher at front 124' (i.e., at the lower abdominal region 128 of the wearer 132) than at rear 120'.
DDDD:: Seam 106 (FIG. 2) on legwear portion 101 is tighter than waistband seam 103, thereby increasing the strength and flexibility of the garment. All seams, here, seams 103, 106, align in such a manner so as to lay smooth against a wearer's body. Pleating 104 of waistband 102 is increased when the garment is not on a body, allowing comfort when putting on the garment. Overlock seam 103 is sewn in a manner that allows the garment to stretch to fit.
DDDD:: Depending on the length of the wearer's skirt or dress, legwear portion 101 is usually visible. Waistband 102, however, is not seen, as it is worn as an undergarment. As demonstrated by FIG. 4, hybrid hosiery 100 is flexible, allowing the wearer a wide range of movement. The raw edge 107 of waistband 102 lays completely flat against the wearer's body without digging into the body or creating a visible line. Additionally, seam 103 between legwear portion 101 and waistband 102 is stretchy, smooth, and invisible.
DDDD:: Exemplary embodiments have been disclosed above and illustrated in the accompanying drawings. It will be understood by those skilled in the art that various changes, omissions and additions may be made to that which is specifically disclosed herein without departing from the spirit and scope of the present invention
CLI :: 1. A hosiery for being worn by a wearer having a left leg, a right leg, hips, a lower abdominal region, and a waist, the hosiery comprising: a legwear portion made of a first stretchable material, said legwear portion including: an upper portion having an upper end located at about the hips of the wearer when the wearer is wearing the hosiery, said legwear portion designed and configured so that said legwear portion has: a front located proximate the lower abdominal region of the wearer when the wearer is wearing the hosiery; and a rear located opposite said front when the wearer is wearing the hosiery; a left-leg portion connected to said upper portion and designed and configured to be worn on the left leg of the wearer; and a right-leg portion connected to said upper portion and designed and configured to be worn on the right leg of the wearer; and a waistband having a raw-cut upper edge and a raw-cut lower edge, said raw-cut lower edge secured to said legwear portion at said upper end of said legwear portion with a smooth seam, said waistband being made of a second stretchable material that does not roll and does not fray at said raw-cut upper edge, wherein: said waistband has a width between said raw-cut upper and lower edges that tapers between said front and back; and said raw-cut upper edge remains unfinished when the hosiery is completed.
CLD :: 2. The hosiery according to claim 1, wherein said waistband has a first width between said raw-cut upper and lower edges at said front of said legwear portion and a second width between said raw-cut upper and lower edges at said rear of said legwear portion, wherein said second width is greater than said first width.
CLD :: 3. The hosiery according to claim 1, wherein said waistband has a minimum width between said raw-cut upper and lower edges that is greater than about 4 inches (10.16 cm).
CLD :: 4. The hosiery according to claim 1, wherein said first stretchable material has a denier from about 3 to about 100.
CLD :: 5. The hosiery according to claim 1, wherein said second stretchable material comprises a nylon-spandex blend.
CLD :: 6. The hosiery according to claim 1, wherein said legwear portion is a product of a circular knitting process.
CLI :: 7. A hosiery for being worn by a wearer having a left leg, a right leg, hips, a lower abdominal region, and a waist, the hosiery comprising: a legwear portion made of a first stretchable material having a denier in a range from about 3 to about 100, said legwear portion having an upper end located at about the hips of the wearer when the hosiery is worn by the wearer, said legwear portion designed and configured so that said legwear portion has: a front located proximate the lower abdominal region of the wearer when the wearer is wearing the hosiery; and a rear located opposite said front when the wearer is wearing the hosiery; a left-leg portion connected to said upper portion and designed and configured to be worn on the left leg of the wearer; and a right-leg portion connected to said upper portion and designed and configured to be worn on the right leg of the wearer; and a waistband having a raw-cut upper edge and a raw-cut lower edge, said raw-cut lower edge secured to said legwear portion at said upper end with a smooth seam, said waistband being made of a second stretchable material that does not roll and does not fray at said raw-cut upper edge, wherein said raw-cut upper edge of the waistband is located at about the waist of the intended wearer when the intended wearer is wearing the hosiery, wherein: said waistband has a width between said raw-cut upper and lower edges that tapers between said front and back; and said raw-cut upper edge remains unfinished when the hosiery is completed.
CLD :: 8. The hosiery according to claim 7, wherein said second stretchable material comprises a nylon-spandex blend.
CLD :: 9. The hosiery according to claim 8, wherein said legwear portion is a product of a circular knitting process.
CLD :: 10. The hosiery according to claim 7, wherein said waistband has a minimum width between said raw-cut upper and lower edges that is greater than about 4 inches (10.16 cm).
CLD :: 11. The hosiery according to claim 7, wherein said waistband has a first width between said raw-cut upper and lower edges at said front of said legwear portion and a second width between said raw-cut upper and lower edges at said rear of said legwear portion, wherein said second width is greater than said first width.
ENDRECORD
TITL:: Functional underpants for men
DTYP:: pat
ATYP:: utility
PTNO:: 08661569
ISDT:: 20140304
APNO:: 13259714
APDT:: 20091214
PBNO::
PBDT::
AGAP:: 1541
AGPB::